Commit fe2a5c81 authored by Adam Mills's avatar Adam Mills
Browse files

Fixing variable declaration

parent ad902c1f
Loading
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -1165,6 +1165,7 @@ int16_t ivas_spar_chk_zero_coefs(
    ivas_spar_md_dec_state_t *hMdDec;
    int16_t num_md_sub_frames;
    int16_t mono = 1;
    int16_t ndec, ndm;

    hMdDec = st_ivas->hSpar->hMdDec;

@@ -1175,8 +1176,8 @@ int16_t ivas_spar_chk_zero_coefs(
#endif
    );

    int16_t ndec = hMdDec->spar_md_cfg.num_decorr_per_band[0];
    int16_t ndm = hMdDec->spar_md_cfg.num_dmx_chans_per_band[0];
    ndec = hMdDec->spar_md_cfg.num_decorr_per_band[0];
    ndm = hMdDec->spar_md_cfg.num_dmx_chans_per_band[0];

    for ( i_ts = 0; i_ts < num_md_sub_frames; i_ts++ )
    {