Home
last modified time | relevance | path

Searched refs:WebRtcAec_sqrtHanning (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/webrtc/modules/audio_processing/aec/
Daec_common.h24 extern ALIGN16_BEG const float ALIGN16_END WebRtcAec_sqrtHanning[65];
Daec_core.c55 ALIGN16_BEG const float ALIGN16_END WebRtcAec_sqrtHanning[65] = { variable
388 x_windowed[i] = x[i] * WebRtcAec_sqrtHanning[i]; in WindowData()
390 x[PART_LEN + i] * WebRtcAec_sqrtHanning[PART_LEN - i]; in WindowData()
1189 output[i] = (fft[i] * WebRtcAec_sqrtHanning[i] + in EchoSuppression()
1190 aec->outBuf[i] * WebRtcAec_sqrtHanning[PART_LEN - i]); in EchoSuppression()
Daec_core_neon.c644 const float32x4_t vec_sqrtHanning = vld1q_f32(&WebRtcAec_sqrtHanning[i]); in WindowDataNEON()
647 vld1q_f32(&WebRtcAec_sqrtHanning[PART_LEN - i - 3]); in WindowDataNEON()
Daec_core_sse2.c626 const __m128 vec_sqrtHanning = _mm_load_ps(&WebRtcAec_sqrtHanning[i]); in WindowDataSSE2()
629 _mm_loadu_ps(&WebRtcAec_sqrtHanning[PART_LEN - i - 3]); in WindowDataSSE2()