OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:corr_max
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
pitch_estimator.c
145
double corr,
corr_max
;
local
202
corr_max
= 0.0;
210
if (corr >
corr_max
) {
211
corr_max
= corr; /* update maximum */
225
if (corr >
corr_max
) {
226
corr_max
= corr; /* update maximum */
231
if (corr >
corr_max
) {
232
corr_max
= corr; /* update maximum */
246
if (corr >
corr_max
) {
247
corr_max
= corr; /* update maximum *
[
all
...]
/external/webrtc/src/modules/audio_processing/aecm/
aecm_core.h
86
#define
CORR_MAX
16 // Maximum correlation offset
91
#define CORR_BUF_LEN (
CORR_MAX
<< 1) + 1
92
// Note that CORR_WIDTH + 2*
CORR_MAX
<= MAX_BUF_LEN
Completed in 349 milliseconds