Commit dccd7701 authored by Marek Szczerba's avatar Marek Szczerba
Browse files

Right shift by two as compared to Q factor reapplied

parent 008849f8
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2291,7 +2291,7 @@ ivas_error ivas_rend_crendProcessSubframe(
        {
            FOR( Word16 j = 0; j < n_samples_to_render; j++ )
            {
                output[i][j] = L_shr( output[i][j], *pCrend->p_io_qfactor );
                output[i][j] = L_shr( output[i][j], add( *pCrend->p_io_qfactor, 2 ) );
                move32();
            }
        }