Home
last modified time | relevance | path

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

/external/webrtc/src/modules/audio_processing/aec/
Daec_core_sse2.c50 const __m128 wfBuf_re = _mm_loadu_ps(&aec->wfBuf[0][pos + j]); in FilterFarSSE2()
51 const __m128 wfBuf_im = _mm_loadu_ps(&aec->wfBuf[1][pos + j]); in FilterFarSSE2()
68 aec->wfBuf[0][ pos + j], aec->wfBuf[1][ pos + j]); in FilterFarSSE2()
70 aec->wfBuf[0][ pos + j], aec->wfBuf[1][ pos + j]); in FilterFarSSE2()
185 float wt1 = aec->wfBuf[1][pos]; in FilterAdaptationSSE2()
186 aec->wfBuf[0][pos + PART_LEN] += fft[1]; in FilterAdaptationSSE2()
188 __m128 wtBuf_re = _mm_loadu_ps(&aec->wfBuf[0][pos + j]); in FilterAdaptationSSE2()
189 __m128 wtBuf_im = _mm_loadu_ps(&aec->wfBuf[1][pos + j]); in FilterAdaptationSSE2()
196 _mm_storeu_ps(&aec->wfBuf[0][pos + j], wtBuf_re); in FilterAdaptationSSE2()
197 _mm_storeu_ps(&aec->wfBuf[1][pos + j], wtBuf_im); in FilterAdaptationSSE2()
[all …]
Daec_core.c257 aec->wfBuf[0][ pos + j], aec->wfBuf[1][ pos + j]); in FilterFar()
259 aec->wfBuf[0][ pos + j], aec->wfBuf[1][ pos + j]); in FilterFar()
348 aec->wfBuf[0][pos] += fft[0]; in FilterAdaptation()
349 aec->wfBuf[0][pos + PART_LEN] += fft[1]; in FilterAdaptation()
352 aec->wfBuf[0][pos + j] += fft[2 * j]; in FilterAdaptation()
353 aec->wfBuf[1][pos + j] += fft[2 * j + 1]; in FilterAdaptation()
478 memset(aec->wfBuf, 0, sizeof(complex_t) * NR_PART * PART_LEN1); in WebRtcAec_InitAec()
903 wfEn += aec->wfBuf[0][pos + j] * aec->wfBuf[0][pos + j] + in NonLinearProcessing()
904 aec->wfBuf[1][pos + j] * aec->wfBuf[1][pos + j]; in NonLinearProcessing()
1003 memset(aec->wfBuf, 0, sizeof(aec->wfBuf)); in NonLinearProcessing()
Daec_core.h93 float wfBuf[2][NR_PART * PART_LEN1]; // filter fft member