HomeSort by relevance Sort by last modified time
    Searched defs:efw (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/webrtc/modules/audio_processing/aecm/
aecm_core_c.c 96 complex16_t* efw,
102 // Reuse |efw| for the inverse FFT output after transferring
104 int16_t* ifft_out = (int16_t*)efw;
108 fft[j] = efw[i].real;
109 fft[j + 1] = -efw[i].imag;
111 fft[0] = efw[0].real;
112 fft[1] = -efw[0].imag;
114 fft[PART_LEN2] = efw[PART_LEN].real;
115 fft[PART_LEN2 + 1] = -efw[PART_LEN].imag;
318 complex16_t* efw = (complex16_t*) (((uintptr_t) efw_buf + 31) & ~ 31) local
    [all...]
aecm_core_mips.c 204 complex16_t* efw,
212 complex16_t* pefw = efw;
281 fft[2] = efw[PART_LEN].real;
282 fft[3] = -efw[PART_LEN].imag;
826 complex16_t* efw = (complex16_t*)(((uint32_t)efw_buf + 31) & ~ 31); local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
aec_core.c 270 float efw[2][PART_LEN1]) {
281 efw[0][i] *= hNl[i];
282 efw[1][i] *= hNl[i];
286 efw[1][i] *= -1;
329 float efw[2][PART_LEN1],
343 ptrGCoh[1] * (efw[0][i] * efw[0][i] + efw[1][i] * efw[1][i]);
356 ptrGCoh[1] * (dfw[0][i] * efw[0][i] + dfw[1][i] * efw[1][i])
794 float efw[2][PART_LEN1], xfw[2][PART_LEN1]; local
    [all...]
  /external/webrtc/src/modules/audio_processing/aec/
aec_core.c 115 static void ComfortNoise(aec_t *aec, float efw[2][PART_LEN1],
360 float efw[2][PART_LEN1]) {
371 efw[0][i] *= hNl[i];
372 efw[1][i] *= hNl[i];
376 efw[1][i] *= -1;
854 float efw[2][PART_LEN1], dfw[2][PART_LEN1], xfw[2][PART_LEN1]; local
949 efw[1][0] = 0;
950 efw[1][PART_LEN] = 0;
951 efw[0][0] = fft[0];
952 efw[0][PART_LEN] = fft[1]
    [all...]
  /external/webrtc/src/modules/audio_processing/aecm/
aecm_core.c 401 complex16_t* efw,
412 fft[j] = efw[i].real;
415 fft[PART_LEN4 - j] = efw[i].real;
416 fft[j + 1] = -efw[i].imag;
419 fft[PART_LEN4 - (j - 1)] = efw[i].imag;
421 fft[0] = efw[0].real;
422 fft[1] = -efw[0].imag;
424 fft[PART_LEN2] = efw[PART_LEN].real;
425 fft[PART_LEN2 + 1] = -efw[PART_LEN].imag;
1535 complex16_t* efw = (complex16_t*) (((uintptr_t) efw_buf + 31) & ~ 31); local
    [all...]

Completed in 1237 milliseconds