HomeSort by relevance Sort by last modified time
    Searched refs:noiseAvg (Results 1 - 2 of 2) sorted by null

  /external/webrtc/webrtc/modules/audio_processing/aec/
aec_core_mips.c 33 float noise, noiseAvg, tmp, tmpAvg;
273 noiseAvg = 0.0;
286 noiseAvg += sqrtf(noisePow[i]);
288 noiseAvg /= (float)num;
309 u[i][0] = noiseAvg * (float)cos(tmp);
310 u[i][1] = -noiseAvg * (float)sin(tmp);
    [all...]
aec_core.c 448 float noise, noiseAvg, tmp, tmpAvg;
482 noiseAvg = 0.0;
492 noiseAvg += sqrtf(noisePow[i]);
494 noiseAvg /= (float)num;
515 u[0][i] = noiseAvg * (float)cos(tmp);
516 u[1][i] = -noiseAvg * (float)sin(tmp);
    [all...]

Completed in 179 milliseconds