echo-cancel: Remove extraneous debug message

This was making it impossible to run in debug mode with save_aec=1
This commit is contained in:
Arun Raghavan 2011-05-20 10:01:16 +05:30
parent 8305284cd2
commit f4eccad1e6

View file

@ -720,7 +720,6 @@ static void source_output_push_cb(pa_source_output *o, const pa_memchunk *chunk)
fwrite(pdata, 1, u->blocksize, u->played_file); fwrite(pdata, 1, u->blocksize, u->played_file);
if (u->canceled_file) if (u->canceled_file)
fwrite(cdata, 1, u->blocksize, u->canceled_file); fwrite(cdata, 1, u->blocksize, u->canceled_file);
pa_log_debug("AEC frame saved.");
} }
pa_memblock_release(cchunk.memblock); pa_memblock_release(cchunk.memblock);