Commit 373da4cf authored by Fabian Bauer's avatar Fabian Bauer
Browse files

fix warning non-initialized L_tmp32, tmp16

parent 362d92bc
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -7189,8 +7189,8 @@ void synthesise_fb_high_band_fx(
    {
#ifdef FIX_1439_SPEEDUP_synthesise_fb_high_band_fx
        L_tmp = Mult_32_16( ratio2, tmp[i] ); /* Q(16-exp+exp_tmp-15 = 1-exp+exp_tmp) */
        Word32 L_tmp32;
        Word16 tmp16;
        Word32 L_tmp32 = L_add( 0, 0 );
        Word16 tmp16 = add( 0, 0 );

        // if (L_tmp < 0)
        if ( L_tmp < 0 )