OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:complex_t
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/src/modules/audio_processing/aec/
aec_core.h
35
typedef float
complex_t
[2];
typedef
38
// ones (
complex_t
[SIZE] -> float[2][SIZE]). This allows SIMD optimizations and
94
complex_t
sde[PART_LEN1]; // cross-psd of nearend and error
95
complex_t
sxd[PART_LEN1]; // cross-psd of farend and nearend
96
complex_t
xfwBuf[NR_PART * PART_LEN1]; // farend windowed fft buffer
aec_core.c
116
complex_t
*comfortNoiseHband,
477
memset(aec->xfBuf, 0, sizeof(
complex_t
) * NR_PART * PART_LEN1);
478
memset(aec->wfBuf, 0, sizeof(
complex_t
) * NR_PART * PART_LEN1);
479
memset(aec->sde, 0, sizeof(
complex_t
) * PART_LEN1);
480
memset(aec->sxd, 0, sizeof(
complex_t
) * PART_LEN1);
481
memset(aec->xfwBuf, 0, sizeof(
complex_t
) * NR_PART * PART_LEN1);
855
complex_t
comfortNoiseHband[PART_LEN1];
[
all
...]
Completed in 380 milliseconds