mirror of
https://github.com/UberGames/ioef.git
synced 2024-11-24 13:11:30 +00:00
VoIP: changed debug output filenames.
This commit is contained in:
parent
fec2cc2f05
commit
fdfaff64f8
1 changed files with 2 additions and 2 deletions
|
@ -770,10 +770,10 @@ void CL_ParseVoip ( msg_t *msg ) {
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
static FILE *encio = NULL;
|
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); }
|
if (encio != NULL) { fwrite(encoded, len, 1, encio); fflush(encio); }
|
||||||
static FILE *decio = NULL;
|
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); }
|
if (decio != NULL) { fwrite(decoded+written, clc.speexFrameSize*2, 1, decio); fflush(decio); }
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue