Commit e13d5e40 authored by Fabian Bauer's avatar Fabian Bauer
Browse files

clang format patch

parent 8222c771
Loading
Loading
Loading
Loading
Loading
+88 −91
Original line number Diff line number Diff line
@@ -1014,11 +1014,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();
        }
@@ -1028,8 +1026,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();
        }
+73 −74
Original line number Diff line number Diff line
@@ -1700,7 +1700,6 @@ void GenShapedWBExcitation_ivas_fx(
                    k++;
                }
#endif

            }
        }
    }
+1 −1

File changed.

Contains only whitespace changes.

+3 −3

File changed.

Contains only whitespace changes.

+8 −8

File changed.

Contains only whitespace changes.

+7 −7

File changed.

Contains only whitespace changes.

Loading