Commit 3448f78d authored by Manuel Jander's avatar Manuel Jander
Browse files

Fix wrong compare value (was greater than instead of less than).

parent 3ddc2ac4
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -859,7 +859,7 @@ static void stereo_dft_generate_comfort_noise_fx(
#endif
                }
#ifdef NONBE_FIX_2575
                ELSE IF( EQ_16( BASOP_Util_Cmp_Mant32Exp( ftmp, ftmp_exp, st->hFdCngDec->smoothed_psd_fx[i], st->hFdCngDec->smoothed_psd_exp ), 1 ) )
                ELSE IF( EQ_16( BASOP_Util_Cmp_Mant32Exp( ftmp, ftmp_exp, st->hFdCngDec->smoothed_psd_fx[i], st->hFdCngDec->smoothed_psd_exp ), -1 ) )
#else
                ELSE IF( LT_32( ftmp, st->hFdCngDec->smoothed_psd_fx[i] ) )
#endif