Commit 13acea39 authored by Jan Kiene's avatar Jan Kiene
Browse files

fix variable type and wanring on windows

parent 23a1066c
Loading
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -2462,7 +2462,7 @@ ivas_error ivas_jbm_dec_flush_renderer_fx(
    Word32 *p_output_fx[MAX_LS_CHANNELS + MAX_NUM_OBJECTS];
    Word16 nchan_in, nchan_out;
#ifdef FIX_1486_INIT_OUTPUT_POINTERS
    int16_t ch_idx;
    Word16 ch_idx;
#endif


@@ -2791,7 +2791,11 @@ ivas_error ivas_jbm_dec_flush_renderer_fx(
        IF( NE_16( st_ivas->ivas_format, MONO_FORMAT ) )
        {
#ifndef DISABLE_LIMITER
#ifndef FIX_1486_INIT_OUTPUT_POINTERS
            Word16 ch_idx, exp = 11;
#else
            Word16 exp = 11;
#endif
            move16();
            FOR( ch_idx = 0; ch_idx < MAX_OUTPUT_CHANNELS + MAX_NUM_OBJECTS; ch_idx++ )
            {