Commit c24bd535 authored by Jonas Svedberg's avatar Jonas Svedberg
Browse files

clang format fixes

parent 317cb652
Loading
Loading
Loading
Loading
Loading
+14 −13
Original line number Diff line number Diff line
@@ -2232,7 +2232,8 @@ void msvq_dec(
                dcttype = IDCT_T2_XX_16;
                tcx_ind = ( applyIDCT_flag == 20 ) ? 0 : 1; /* 20-->0  &&  10->>1 */
#ifdef DEBUGGING
                if (tcx_ind == 0 ) {  
                if ( tcx_ind == 0 )
                {
                    assert( stages == SNS_MSVQ_NSTAGES_TCX20 );
                }
                else if ( tcx_ind == 1 )
+20 −18
Original line number Diff line number Diff line
@@ -458,7 +458,6 @@ int16_t quantize_sns(
    }



    for ( ch = 0; ch < CPE_CHANNELS; ++ch )
    {
        st = sts[ch];
@@ -510,7 +509,8 @@ int16_t quantize_sns(
                    char v[2 * 1024];
                    int16_t nC; /* nCandidates */
                    int16_t tcx = 10;
                    if ( nSubframes == 1) {
                    if ( nSubframes == 1 )
                    {
                        tcx = 20;
                    }

@@ -524,7 +524,9 @@ int16_t quantize_sns(
                    if ( sns_stereo_mode[ch] == 0 )
                    {
                        sprintf( vq_name, "SD2_%s_Mid_Ch%dsub%dSt%dnC%d", v, ch, k, nStages, nC );
                     } else {
                    }
                    else
                    {
                        sprintf( vq_name, "SD2_%s_LR_Ch%dsub%dSt%dnC%d", v, ch, k, nStages, nC );
                    }
                    snr_diff( sns_ptr, snsQ, M, 0, vq_name );
+2 −2

File changed.

Contains only whitespace changes.

+17 −17

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+77 −77

File changed.

Contains only whitespace changes.

Loading