Commit bd629b6c authored by thomas dettbarn's avatar thomas dettbarn
Browse files

fixed a pointer issue in ivas_band_cov_fx()

parent c45cd7c0
Loading
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -560,9 +560,8 @@ static void ivas_band_cov_fx(
            {
                Word64 temp;
                const Word32 *p_bin_to_band = pFb_bin_to_band[k]; // Q22
                Word32 *cov_ptr = pV_re;
                Word32 *cov_ptr;
                Word16 blk;
                move16();

                temp = 0;
                move64();
@@ -571,7 +570,7 @@ static void ivas_band_cov_fx(
                active_bins = pFb_active_bins_per_band[k]; /* Q0 */
                move16();

                cov_ptr += start_bin;
                cov_ptr = &pV_re[start_bin];
                move16();
                FOR( blk = 0; blk < num_blocks; blk++ )
                {