Commit 83a63d92 authored by Anjaneyulu Sana's avatar Anjaneyulu Sana
Browse files

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

parent 4f234b04
Loading
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();
    }