Commit 942d83c4 authored by Jan Kiene's avatar Jan Kiene
Browse files

use correct loop variable

parent e7a2525e
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -143,7 +143,7 @@ void sns_compute_scf_fx(
    /* Noise floor at -40dB */
    sum = 0;
    for (Word16 ind = 0; ind < FDNS_NPTS; ind++) {
        sum += (Word64)xs[i];
        sum += (Word64)xs[ind];
    }
    mean = (Word32)(sum >> 6);