Commit 17ae5e8d authored by Fabian Bauer's avatar Fabian Bauer
Browse files

clang patch

parent 90ce7e89
Loading
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
@@ -1020,11 +1020,9 @@ void SpectrumSmoothing_fx(
                outBuf_pss_fx[j] = 0;
                move16();
            }
            ELSE IF( LT_32( L_abs( L_inBuf_pss[j] ), L_max_val[i] ) )
            {
            ELSE IF( LT_32( L_abs( L_inBuf_pss[j] ), L_max_val[i] ) ){
#ifdef ISSUE_1836_replace_overflow_libcom
                IF( L_inBuf_pss[j] >= 0 )
                {
                IF( L_inBuf_pss[j] >= 0 ){
                    outBuf_pss_fx[j] = round_fx_sat( L_shl_sat( Mpy_32_16_r( L_shl( L_inBuf_pss[j], exp_norm ), max_val_norm_fx ), sub( exp_shift, exp_norm ) ) ); //??sat //??sat
            move32();
        }
@@ -1034,8 +1032,7 @@ void SpectrumSmoothing_fx(
            move16();
        }
#else
                IF( L_inBuf_pss[j] >= 0 )
                {
                IF( L_inBuf_pss[j] >= 0 ){
                    outBuf_pss_fx[j] = round_fx_o( L_shl_o( Mpy_32_16_r( L_shl_o( L_inBuf_pss[j], exp_norm, &Overflow ), max_val_norm_fx ), sub( exp_shift, exp_norm ), &Overflow ), &Overflow );
            move32();
        }
+24 −24

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+24 −24

File changed.

Contains only whitespace changes.

+2 −2

File changed.

Contains only whitespace changes.

+5 −5

File changed.

Contains only whitespace changes.

+6 −6

File changed.

Contains only whitespace changes.

Loading