Commit e672c51d authored by multrus's avatar multrus
Browse files

fix loop initialization

parent c7605ca3
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -103,9 +103,9 @@ void getChannelEnergies_fx(
            nrg[ch] = BASOP_Util_Add_Mant32Exp( nrg[ch], nrg_e[ch], sum2, sum2_e, &nrg_e[ch] );
            move32();

            FOR( n = 0; n < nSubframes; n++ )
#else
            FOR( n = 1; n < nSubframes; n++ )
#else
            FOR( n = 0; n < nSubframes; n++ )
#endif
            {
#ifdef FIX_2356_GET_CHAN_ENERGIES