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

Merge branch '3gpp_issue_1455_fix' into 'main'

[allow regression] Fix for 3GPP issue 1455: ParamMC Encoder: Missing energy for BASOP in 10kHz region

See merge request !1410
parents 7ce757a9 83a63d92
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2222,7 +2222,7 @@ static void ivas_param_mc_dec2bin_fx(
    /* convert value to bitstream, MSB first */
    FOR( idx = 0; idx < N; idx++ )
    {
        bits[idx] = (UWord16) s_and( shr( val, sub( N, sub( 1, idx ) ) ), 1 );
        bits[idx] = (UWord16) s_and( shr( val, sub( sub( N, 1 ), idx ) ), 1 );
        move16();
    }