OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PART_LEN
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/src/modules/audio_processing/aec/
aec_core.h
24
#define
PART_LEN
64 // Length of partition
25
#define PART_LEN1 (
PART_LEN
+ 1) // Unique fft coefficients
26
#define PART_LEN2 (
PART_LEN
* 2) // Length of partition * 2
105
float outBuf[
PART_LEN
];
/external/webrtc/src/modules/audio_processing/aecm/
aecm_core.h
28
#define
PART_LEN
32 // Length of partition
29
#define PART_LEN_SHIFT 6 // Length of (
PART_LEN
* 2) in base 2
33
#define
PART_LEN
64 // Length of partition
34
#define PART_LEN_SHIFT 7 // Length of (
PART_LEN
* 2) in base 2
38
#define PART_LEN1 (
PART_LEN
+ 1) // Unique fft coefficients
39
#define PART_LEN2 (
PART_LEN
<< 1) // Length of partition * 2
40
#define PART_LEN4 (
PART_LEN
<< 2) // Length of partition * 4
158
WebRtc_Word16 outBuf_buf[
PART_LEN
+ 8];
Completed in 2210 milliseconds