Commit 9f805bb9 authored by Manuel Jander's avatar Manuel Jander
Browse files

Fix asser failure (saturation alarm) for...

Fix asser failure (saturation alarm) for stereo_at_64_kbps_32kHz_in_32kHz_out_bandwidth_switching -10dB case.
parent 54fe0f18
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3351,7 +3351,7 @@ void IMDCT_ivas_fx(

                Word16 diff = sub( q_tmp_fx_32, q_win );
#ifdef FIX_1348_BIT_PRECISION_IMPROVEMENT_DYNAMIC_QOLD
                Word16 q_old_out_diff = sub( q_tmp_fx_32, *q_old_out_fx );
                Word16 q_old_out_diff = s_max( sub( q_tmp_fx_32, *q_old_out_fx ), 0 );
#endif
                FOR( Word16 ind = 0; ind < L_frame; ind++ )
                {