HomeSort by relevance Sort by last modified time
    Searched refs:xfBuf (Results 1 - 3 of 3) sorted by null

  /external/webrtc/src/modules/audio_processing/aec/
aec_core_sse2.c 48 const __m128 xfBuf_re = _mm_loadu_ps(&aec->xfBuf[0][xPos + j]);
49 const __m128 xfBuf_im = _mm_loadu_ps(&aec->xfBuf[1][xPos + j]);
67 yf[0][j] += MulRe(aec->xfBuf[0][xPos + j], aec->xfBuf[1][xPos + j],
69 yf[1][j] += MulIm(aec->xfBuf[0][xPos + j], aec->xfBuf[1][xPos + j],
143 // Load xfBuf and ef.
144 const __m128 xfBuf_re = _mm_loadu_ps(&aec->xfBuf[0][xPos + j]);
145 const __m128 xfBuf_im = _mm_loadu_ps(&aec->xfBuf[1][xPos + j]);
148 // Calculate the product of conjugate(xfBuf) by ef
    [all...]
aec_core.h 92 float xfBuf[2][NR_PART * PART_LEN1]; // farend fft buffer
aec_core.c 256 yf[0][j] += MulRe(aec->xfBuf[0][xPos + j], aec->xfBuf[1][xPos + j],
258 yf[1][j] += MulIm(aec->xfBuf[0][xPos + j], aec->xfBuf[1][xPos + j],
301 // aec->wfBuf[pos + j][0] += MulRe(aec->xfBuf[xPos + j][0],
302 // -aec->xfBuf[xPos + j][1],
304 // aec->wfBuf[pos + j][1] += MulIm(aec->xfBuf[xPos + j][0],
305 // -aec->xfBuf[xPos + j][1],
325 fft[2 * j] = MulRe(aec->xfBuf[0][xPos + j],
326 -aec->xfBuf[1][xPos + j]
    [all...]

Completed in 240 milliseconds