Home
last modified time | relevance | path

Searched refs:comfortNoiseHband (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/webrtc/modules/audio_processing/aec/
Daec_core_mips.c28 float comfortNoiseHband[2][PART_LEN1], in WebRtcAec_ComfortNoise_mips()
316 comfortNoiseHband[0][i] = tmpAvg * u[i][0]; in WebRtcAec_ComfortNoise_mips()
317 comfortNoiseHband[1][i] = tmpAvg * u[i][1]; in WebRtcAec_ComfortNoise_mips()
320 memset(comfortNoiseHband, 0, in WebRtcAec_ComfortNoise_mips()
321 2 * PART_LEN1 * sizeof(comfortNoiseHband[0][0])); in WebRtcAec_ComfortNoise_mips()
Daec_core.c443 float comfortNoiseHband[2][PART_LEN1], in ComfortNoise()
522 comfortNoiseHband[0][i] = tmpAvg * u[0][i]; in ComfortNoise()
523 comfortNoiseHband[1][i] = tmpAvg * u[1][i]; in ComfortNoise()
526 memset(comfortNoiseHband, 0, in ComfortNoise()
527 2 * PART_LEN1 * sizeof(comfortNoiseHband[0][0])); in ComfortNoise()
1008 float comfortNoiseHband[2][PART_LEN1]; in EchoSuppression() local
1172 WebRtcAec_ComfortNoise(aec, efw, comfortNoiseHband, aec->noisePow, hNl); in EchoSuppression()
1206 ScaledInverseFft(comfortNoiseHband, fft, 2.0f, 0); in EchoSuppression()
Daec_core_internal.h204 float comfortNoiseHband[2][PART_LEN1],