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

Merge branch '3gpp_issue_872_fix' into 'main'

Fix for 3gpp issue 872: Stereo decoder crashing in UC mode

See merge request !576
parents 14dbe7d8 42a404cd
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -333,7 +333,7 @@ static void gain_dec_gacelp_uv_fx(
    /* g_code2 = pred_nrg_frame * norm_code2; */
    L_tmp = Mpy_32_16_1( pred_nrg_frame, norm_code2 ); /* 18Q13 */
    i = norm_l( L_tmp );
    g_code2 = round_fx( L_shl( L_tmp, i ) );
    g_code2 = round_fx_sat( L_shl_sat( L_tmp, i ) );
    exp_gcode2 = sub( 18, i );

    /*-----------------------------------------------------------------*