Commit 8797a768 authored by Arash Azizi's avatar Arash Azizi
Browse files

issue 2653: creating the switch and the assert to figure out which tests...

issue 2653: creating the switch and the assert to figure out which tests actually use this function. Then, use the testcase to inspect individual values.
parent f51f2c58
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -87,6 +87,7 @@
#define TMP_1342_WORKAROUND_DEC_FLUSH_BROKEN_IN_SR      /* FhG: Temporary workaround for incorrect implementation of decoder flush with split rendering */
#define NONBE_1122_KEEP_EVS_MODE_UNCHANGED              /* FhG: Disables fix for issue 1122 in EVS mode to keep BE tests green. This switch should be removed once the 1122 fix is added to EVS via a CR.  */
#define HARMONIZE_2502_GENERATE_COMFORT_NOISE_DEC       /* FhG: harmonize generate_comfort_noise_dec_fx() and generate_comfort_noise_dec_ivas_fx() */
#define ISSUE_2653_BUG_EXP                              /* FhG: basop issue 2653: Possible bug regarding exponent handling in function mix_output_block_fx*/

/* #################### End BE switches ################################## */

+3 −0
Original line number Diff line number Diff line
@@ -2232,6 +2232,9 @@ ivas_error ivas_reverb_process_fx(
    IF( mix_signals )
    {
        mix_output_block_fx( hReverb, tmp1_fx, tmp2_fx, &pcm_out_fx[0][i_ts * hReverb->full_block_size], &pcm_out_fx[1][i_ts * hReverb->full_block_size] );
#ifdef ISSUE_2653_BUG_EXP
        assert( 0 ); // Finding testcases where this function is called.
#endif // ISSUE_2653_BUG_EXP
    }
    ELSE
    {