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

  /external/webrtc/src/modules/audio_processing/aec/main/source/
aec_core.h 115 float overDrive, overDriveSm;
aec_core.c 444 aec->overDrive = 2;
971 aec->overDrive = aec->minOverDrive;
1009 // Track the local filter minimum to determine suppression overdrive.
1025 aec->overDrive = WEBRTC_SPL_MAX(aec->targetSupp /
1029 // Smooth the overdrive.
1030 if (aec->overDrive < aec->overDriveSm) {
1031 aec->overDriveSm = 0.99f * aec->overDriveSm + 0.01f * aec->overDrive;
1034 aec->overDriveSm = 0.9f * aec->overDriveSm + 0.1f * aec->overDrive;
    [all...]

Completed in 22 milliseconds