Commit cc02ae9f authored by emerit's avatar emerit
Browse files

fix bug version BE

parent 7bdd2869
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -113,6 +113,7 @@

#define CR_2109_to_2112_cd0_ce0  /* This is related to the CRs include in the 26.444 package of 21-12. Concerns lead_deindexing and  */

// #define DISABLE_LIMITER
/* ##################### End NON-BE switches ########################### */

/* ################## End DEVELOPMENT switches ######################### */
+1 −1
Original line number Diff line number Diff line
@@ -4398,7 +4398,7 @@ static ivas_error ivas_rend_crendConvolver(
        pFreq_buf_re = &pcm_out[j][i_ts * subframe_length];
        for ( k = 0; k < subframe_length; k++ )
        {
            pFreq_buf_re[k] = L_add( ( L_shl( pOut[k], pCrend->hHrtfCrend->factor_Q_pOut_to_bin_fx ) ), hCrend->prev_out_buffer_fx[j][k] );
            pFreq_buf_re[k] = L_shl( L_add( pOut[k], hCrend->prev_out_buffer_fx[j][k] ), pCrend->hHrtfCrend->factor_Q_pOut_to_bin_fx );
            hCrend->prev_out_buffer_fx[j][k] = pOut[k + subframe_length];
        }
    }