Loading lib_dec/dec_tcx.c +20 −0 Original line number Diff line number Diff line Loading @@ -1104,7 +1104,27 @@ void decoder_tcx_noisefilling( *-----------------------------------------------------------------*/ /* Init lengths */ #ifdef MDCT_STEREO_PLC_FADE_2_BG_NOISE infoIGFStartLine = get_igf_startline( st, L_frame, L_frameTCX ); #else if ( st->igf == 0 ) { if ( st->narrowBand == 0 ) { /* minimum needed for output with sampling rates lower then the nominal sampling rate */ infoIGFStartLine = min( L_frameTCX, L_frame ); } else { infoIGFStartLine = L_frameTCX; } } else { infoIGFStartLine = min( st->hIGFDec->infoIGFStartLine, L_frameTCX ); } #endif noiseFillingSize = L_spec; if ( st->igf ) Loading lib_dec/igf_dec.c +1 −1 File changed.Contains only whitespace changes. Show changes Loading
lib_dec/dec_tcx.c +20 −0 Original line number Diff line number Diff line Loading @@ -1104,7 +1104,27 @@ void decoder_tcx_noisefilling( *-----------------------------------------------------------------*/ /* Init lengths */ #ifdef MDCT_STEREO_PLC_FADE_2_BG_NOISE infoIGFStartLine = get_igf_startline( st, L_frame, L_frameTCX ); #else if ( st->igf == 0 ) { if ( st->narrowBand == 0 ) { /* minimum needed for output with sampling rates lower then the nominal sampling rate */ infoIGFStartLine = min( L_frameTCX, L_frame ); } else { infoIGFStartLine = L_frameTCX; } } else { infoIGFStartLine = min( st->hIGFDec->infoIGFStartLine, L_frameTCX ); } #endif noiseFillingSize = L_spec; if ( st->igf ) Loading