From 5e69e35df50ef2388545191c891b2cd982f3edbe Mon Sep 17 00:00:00 2001 From: hmund Date: Thu, 27 Jul 2023 11:11:22 +0200 Subject: [PATCH] remove inactive code under SBA_TD_RESIDUAL --- lib_enc/ivas_spar_encoder.c | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/lib_enc/ivas_spar_encoder.c b/lib_enc/ivas_spar_encoder.c index 7233234f49..0007aa6160 100644 --- a/lib_enc/ivas_spar_encoder.c +++ b/lib_enc/ivas_spar_encoder.c @@ -890,29 +890,6 @@ static ivas_error ivas_spar_enc_process( } } -#if 0 /* SBA_TD_RESIDUAL */ - { - static FILE *fid = 0; - static int samplesWritten = 0; - int s; - if (!fid) - { - fid = fopen("enc_pcm.txt", "wt"); - } - if (samplesWritten < 8 * 48000) - { - for (s = 0; s < input_frame; s++) - { - for (i = 0; i < hSpar->hFbMixer->fb_cfg->num_out_chans; i++) - { - fprintf(fid, "%.8f ", p_pcm_tmp[i][s]); - } - fprintf(fid, "\n"); - } - samplesWritten += input_frame; - } - } -#endif /*-----------------------------------------------------------------------------------------* * PCA encoder *-----------------------------------------------------------------------------------------*/ -- GitLab