Macro DISABLE_DIRAC_DELAY_COMP in ivas_mcmasa_enc_open_fx()
In `ivas_mcmasa_enc_open_fx()`, there is still an instance of `DISABLE_DIRAC_DELAY_COMP`. ``` /* initialize delay compensation */ hMcMasa->num_samples_delay_comp = NS2SA_FX2( input_Fs, DELAY_DIRAC_ENC_CMP_NS ); move16(); #ifdef DISABLE_DIRAC_DELAY_COMP hMcMasa->num_samples_delay_comp = 0; /* disable delay compensation by setting to 0 */ #endif ``` Is this debug-code, which could be stripped for the delivery?
issue