mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +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
|
||||
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
|
||||
|
||||
|
|
Loading…
Reference in a new issue