Home
last modified time | relevance | path

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

/external/webrtc/src/modules/audio_processing/aec/
Daec_core_sse2.c84 const __m128 xPow = _mm_loadu_ps(&aec->xPow[i]); in ScaleErrorSignalSSE2() local
88 const __m128 xPowPlus = _mm_add_ps(xPow, k1e_10f); in ScaleErrorSignalSSE2()
115 ef[0][i] /= (aec->xPow[i] + 1e-10f); in ScaleErrorSignalSSE2()
116 ef[1][i] /= (aec->xPow[i] + 1e-10f); in ScaleErrorSignalSSE2()
Daec_core.h86 float xPow[PART_LEN1]; member
Daec_core.c269 ef[0][i] /= (aec->xPow[i] + 1e-10f); in ScaleErrorSignal()
270 ef[1][i] /= (aec->xPow[i] + 1e-10f); in ScaleErrorSignal()
462 memset(aec->xPow, 0, sizeof(aec->xPow)); in WebRtcAec_InitAec()
705 aec->xPow[i] = gPow[0] * aec->xPow[i] + gPow[1] * NR_PART * far_spectrum; in ProcessBlock()