Commit 91332abd authored by Marek Szczerba's avatar Marek Szczerba
Browse files

Using addition with saturation for mixing FDN input signal

parent 494a65f4
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1951,7 +1951,7 @@ static void reverb_block_fx(
                Word32 *pOutput = &ppOutput_fx[j][0];
                FOR( ns = 0; ns < inner_bsize; ns++ )
                {
                    pFeedback_input_fx[ns] = ( L_add( Mpy_32_32( gain_matrix_j_i, pOutput[ns] ), pFeedback_input_fx[ns] ) );
                    pFeedback_input_fx[ns] = ( L_add_sat( Mpy_32_32( gain_matrix_j_i, pOutput[ns] ), pFeedback_input_fx[ns] ) );
                    move32();
                }
            }