Commit 37585f21 authored by Fabian Bauer's avatar Fabian Bauer
Browse files

clang format patch

parent 7750ed7c
Loading
Loading
Loading
Loading
Loading
+27 −26
Original line number Diff line number Diff line
@@ -222,7 +222,8 @@ static void sign_thr_snr_acc_fx(
    }
    BASOP_SATURATE_WARNING_OFF_EVS /* may saturate in BASOP */
#ifdef ISSUE_1867_replace_overflow_libenc
        *L_snr_sum = L_add_sat( *L_snr_sum, L_tmp ); /* Q4 */   //??sat
        *L_snr_sum = L_add_sat( *L_snr_sum, L_tmp );
        /* Q4 */ //??sat
#else
        *L_snr_sum = L_add_o( *L_snr_sum, L_tmp, &Overflow );                                        /* Q4 */
#endif
+46 −45
Original line number Diff line number Diff line
@@ -607,7 +607,8 @@ ivas_error ppp_voiced_encoder_fx(
    {
        /* if (res_enratio < 0.025) */
#ifdef ISSUE_1867_replace_overflow_libenc
        IF( LT_32( L_shl_sat( res_enratio_fx, 4 ), 819 ) ) /*0x0333 = 0.025 in Q15, res_enratio_fx in Q15 after shl 4 */  //??sat
        IF( LT_32( L_shl_sat( res_enratio_fx, 4 ), 819 ) )
        /*0x0333 = 0.025 in Q15, res_enratio_fx in Q15 after shl 4 */ //??sat
#else
        IF( LT_32( L_shl_o( res_enratio_fx, 4, &Overflow ), 819 ) )                /*0x0333 = 0.025 in Q15, res_enratio_fx in Q15 after shl 4 */
#endif
+1 −1

File changed.

Contains only whitespace changes.

+10 −10

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+3 −3

File changed.

Contains only whitespace changes.

+2 −2

File changed.

Contains only whitespace changes.

+6 −6

File changed.

Contains only whitespace changes.

+2 −2

File changed.

Contains only whitespace changes.

Loading