Home
last modified time | relevance | path

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

/external/webrtc/src/modules/audio_processing/aec/
Daec_core.c248 int xPos = (i + aec->xfBufBlockPos) * PART_LEN1; in FilterFar()
251 if (i + aec->xfBufBlockPos >= NR_PART) { in FilterFar()
314 int xPos = (i + aec->xfBufBlockPos)*(PART_LEN1); in FilterAdaptation()
317 if (i + aec->xfBufBlockPos >= NR_PART) { in FilterAdaptation()
474 aec->xfBufBlockPos = 0; in WebRtcAec_InitAec()
762 aec->xfBufBlockPos--; in ProcessBlock()
763 if (aec->xfBufBlockPos == -1) { in ProcessBlock()
764 aec->xfBufBlockPos = NR_PART - 1; in ProcessBlock()
768 memcpy(aec->xfBuf[0] + aec->xfBufBlockPos * PART_LEN1, xf_ptr, in ProcessBlock()
770 memcpy(aec->xfBuf[1] + aec->xfBufBlockPos * PART_LEN1, &xf_ptr[PART_LEN1], in ProcessBlock()
Daec_core_sse2.c39 int xPos = (i + aec->xfBufBlockPos) * PART_LEN1; in FilterFarSSE2()
42 if (i + aec->xfBufBlockPos >= NR_PART) { in FilterFarSSE2()
134 int xPos = (i + aec->xfBufBlockPos)*(PART_LEN1); in FilterAdaptationSSE2()
137 if (i + aec->xfBufBlockPos >= NR_PART) { in FilterAdaptationSSE2()
Daec_core.h111 int xfBufBlockPos; member