Commit b1e85b2a authored by Sandesh Venkatesh's avatar Sandesh Venkatesh
Browse files

Fix for 3GPP issue 1211: Assertion in acelp_core_dec_ivas_fx of BASOP decoder...

Fix for 3GPP issue 1211: Assertion in acelp_core_dec_ivas_fx of BASOP decoder with OMASA LTV bitstream from BASOP encoder

Link #1211
parent a0c504c4
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -351,7 +351,7 @@ void bass_psfilter_fx(
            }
            exp2 = sub( exp, exp2 ); /* exponent num - exponent denom */
            /* gain = corr / ener */
            gain = div_s( round_fx( L_shl( Ltmp, exp ) ), tmp2 );
            gain = div_s( round_fx_sat( L_shl( Ltmp, exp ) ), tmp2 );
            if ( Lcorr < 0 )
            {
                gain = sub( 0, gain );