OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NR_PART
(Results
1 - 3
of
3
) sorted by null
/external/webrtc/src/modules/audio_processing/aec/
aec_core.h
27
#define
NR_PART
12 // Number of partitions in filter.
92
float xfBuf[2][
NR_PART
* PART_LEN1]; // farend fft buffer
93
float wfBuf[2][
NR_PART
* PART_LEN1]; // filter fft
96
complex_t xfwBuf[
NR_PART
* PART_LEN1]; // farend windowed fft buffer
aec_core_sse2.c
37
for (i = 0; i <
NR_PART
; i++) {
42
if (i + aec->xfBufBlockPos >=
NR_PART
) {
43
xPos -=
NR_PART
*(PART_LEN1);
133
for (i = 0; i <
NR_PART
; i++) {
137
if (i + aec->xfBufBlockPos >=
NR_PART
) {
138
xPos -=
NR_PART
* PART_LEN1;
aec_core.c
246
for (i = 0; i <
NR_PART
; i++) {
251
if (i + aec->xfBufBlockPos >=
NR_PART
) {
252
xPos -=
NR_PART
*(PART_LEN1);
290
// for (i = 0; i <
NR_PART
; i++) {
294
// if (i + aec->xfBufBlockPos >=
NR_PART
) {
295
// xPos -=
NR_PART
* PART_LEN1;
313
for (i = 0; i <
NR_PART
; i++) {
317
if (i + aec->xfBufBlockPos >=
NR_PART
) {
318
xPos -=
NR_PART
* PART_LEN1;
477
memset(aec->xfBuf, 0, sizeof(complex_t) *
NR_PART
* PART_LEN1)
[
all
...]
Completed in 40 milliseconds