HomeSort by relevance Sort by last modified time
    Searched refs:dPow (Results 1 - 2 of 2) sorted by null

  /external/webrtc/src/modules/audio_processing/aec/main/source/
aec_core.h 91 float dPow[PART_LEN1];
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...]

Completed in 137 milliseconds