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

  /external/webrtc/src/modules/audio_processing/aec/main/source/
aec_core.h 30 #define NR_PART 12 // Number of partitions
31 #define FILT_LEN (PART_LEN * NR_PART) // Filter length
100 fftw_complex xfBuf[NR_PART * PART_LEN1];
101 fftw_complex wfBuf[NR_PART * PART_LEN1];
104 float xfBuf[2][NR_PART * PART_LEN1]; // farend fft buffer
105 float wfBuf[2][NR_PART * PART_LEN1]; // filter fft
108 complex_t xfwBuf[NR_PART * PART_LEN1]; // farend windowed fft buffer
aec_core_sse2.c 35 for (i = 0; i < NR_PART; i++) {
40 if (i + aec->xfBufBlockPos >= NR_PART) {
41 xPos -= NR_PART*(PART_LEN1);
131 for (i = 0; i < NR_PART; i++) {
135 if (i + aec->xfBufBlockPos >= NR_PART) {
136 xPos -= NR_PART * PART_LEN1;
aec_core.c 219 for (i = 0; i < NR_PART; i++) {
224 if (i + aec->xfBufBlockPos >= NR_PART) {
225 xPos -= NR_PART*(PART_LEN1);
260 for (i = 0; i < NR_PART; i++) {
264 if (i + aec->xfBufBlockPos >= NR_PART) {
265 xPos -= NR_PART * PART_LEN1;
421 memset(aec->xfBuf, 0, sizeof(complex_t) * NR_PART * PART_LEN1);
422 memset(aec->wfBuf, 0, sizeof(complex_t) * NR_PART * PART_LEN1);
425 memset(aec->xfwBuf, 0, sizeof(complex_t) * NR_PART * PART_LEN1);
640 aec->xPow[i] = gPow[0] * aec->xPow[i] + gPow[1] * NR_PART *
    [all...]

Completed in 24 milliseconds