Commit 4775d1d8 authored by Brown, Stefanie's avatar Brown, Stefanie
Browse files

Instrumentation fix in ivas_cov_smooth.c

parent e72d0d4c
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -90,10 +90,10 @@ static void ivas_set_up_cov_smoothing(
        for ( j = 0; j < pFb->filterbank_num_bands; j++ )
        {
            float update_factor;
            update_factor = 0.0f;
            float *p_bin_to_band;
            p_bin_to_band = pFb->fb_bin_to_band.pp_short_stride_bin_to_band[j];
            int16_t active_bins;
            update_factor = 0.0f;
            p_bin_to_band = pFb->fb_bin_to_band.pp_short_stride_bin_to_band[j];
            active_bins = pFb->fb_bin_to_band.p_short_stride_num_bins_per_band[j];
            for ( k = 0; k < active_bins; k++ )
            {