OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:dpow
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/src/modules/audio_processing/aec/main/source/
aec_core.c
407
memset(aec->
dPow
, 0, sizeof(aec->
dPow
));
642
aec->
dPow
[i] = gPow[0] * aec->
dPow
[i] + gPow[1] *
646
// Estimate noise power. Wait until
dPow
is more stable.
649
if (aec->
dPow
[i] < aec->dMinPow[i]) {
650
aec->dMinPow[i] = (aec->
dPow
[i] + step * (aec->dMinPow[i] -
651
aec->
dPow
[i])) * ramp;
[
all
...]
aec_core.h
91
float
dPow
[PART_LEN1];
Completed in 582 milliseconds