Home
last modified time | relevance | path

Searched refs:noiseAvg (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/webrtc/modules/audio_processing/aec/
Daec_core_mips.c33 float noise, noiseAvg, tmp, tmpAvg; in WebRtcAec_ComfortNoise_mips() local
273 noiseAvg = 0.0; in WebRtcAec_ComfortNoise_mips()
286 noiseAvg += sqrtf(noisePow[i]); in WebRtcAec_ComfortNoise_mips()
288 noiseAvg /= (float)num; in WebRtcAec_ComfortNoise_mips()
309 u[i][0] = noiseAvg * (float)cos(tmp); in WebRtcAec_ComfortNoise_mips()
310 u[i][1] = -noiseAvg * (float)sin(tmp); in WebRtcAec_ComfortNoise_mips()
Daec_core.c448 float noise, noiseAvg, tmp, tmpAvg; in ComfortNoise() local
482 noiseAvg = 0.0; in ComfortNoise()
492 noiseAvg += sqrtf(noisePow[i]); in ComfortNoise()
494 noiseAvg /= (float)num; in ComfortNoise()
515 u[0][i] = noiseAvg * (float)cos(tmp); in ComfortNoise()
516 u[1][i] = -noiseAvg * (float)sin(tmp); in ComfortNoise()