Commit 5785fc2b authored by Fabian Bauer's avatar Fabian Bauer
Browse files

made 1st parameter const - fix msvc warning

fixed two more warnings 'uninitialized local variable'
parent d167f295
Loading
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -6701,7 +6701,7 @@ void wb_tbe_extras_reset_synth_fx(

void elliptic_bpf_48k_generic_fx(
#ifdef FIX_1439_SPEEDUP_SIMPLIFY_elliptic_bpf_48k_generic_STAGE2
    int16_t element_mode,
    const int16_t element_mode,
#endif
#ifdef FIX_1439_SPEEDUP_SIMPLIFY_elliptic_bpf_48k_generic
    Word16 IsUpsampled3,
@@ -7360,8 +7360,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 )