From fdfaff64f87505ae58823f9edf8d9a7d46cb1a0c Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sat, 7 Jun 2008 14:41:21 +0000 Subject: [PATCH] VoIP: changed debug output filenames. --- code/client/cl_parse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/client/cl_parse.c b/code/client/cl_parse.c index b00e861f..27607e06 100644 --- a/code/client/cl_parse.c +++ b/code/client/cl_parse.c @@ -770,10 +770,10 @@ void CL_ParseVoip ( msg_t *msg ) { #if 0 static FILE *encio = NULL; - if (encio == NULL) encio = fopen("incoming-encoded.bin", "wb"); + if (encio == NULL) encio = fopen("voip-incoming-encoded.bin", "wb"); if (encio != NULL) { fwrite(encoded, len, 1, encio); fflush(encio); } static FILE *decio = NULL; - if (decio == NULL) decio = fopen("incoming-decoded.bin", "wb"); + if (decio == NULL) decio = fopen("voip-incoming-decoded.bin", "wb"); if (decio != NULL) { fwrite(decoded+written, clc.speexFrameSize*2, 1, decio); fflush(decio); } #endif