Commit d6917ed6 authored by Jan Kiene's avatar Jan Kiene
Browse files

fix compilation error and warning

parent 6fb9241d
Loading
Loading
Loading
Loading
Loading
+20 −0
Original line number Diff line number Diff line
@@ -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 )
+1 −1

File changed.

Contains only whitespace changes.