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

  /external/webrtc/src/modules/audio_processing/aec/main/source/
aec_core.h 132 float errThresh; // error threshold
aec_core_sse2.c 76 const __m128 kThresh = _mm_set1_ps(aec->errThresh);
117 if (absEf > aec->errThresh) {
118 absEf = aec->errThresh / (absEf + 1e-10f);
aec_core.c 246 if (absEf > aec->errThresh) {
247 absEf = aec->errThresh / (absEf + 1e-10f);
351 aec->errThresh = 2e-6f;
355 aec->errThresh = 1.5e-6f;
    [all...]

Completed in 48 milliseconds