OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dPow
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/src/modules/audio_processing/aec/
aec_core.h
87
float
dPow
[PART_LEN1];
aec_core.c
463
memset(aec->
dPow
, 0, sizeof(aec->
dPow
));
710
aec->
dPow
[i] = gPow[0] * aec->
dPow
[i] + gPow[1] * near_spectrum;
715
// Estimate noise power. Wait until
dPow
is more stable.
718
if (aec->
dPow
[i] < aec->dMinPow[i]) {
719
aec->dMinPow[i] = (aec->
dPow
[i] + step * (aec->dMinPow[i] -
720
aec->
dPow
[i])) * ramp;
[
all
...]
Completed in 45 milliseconds