OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:errThresh
(Results
1 - 3
of
3
) sorted by null
/external/webrtc/src/modules/audio_processing/aec/
aec_core.h
122
float
errThresh
; // error threshold
aec_core_sse2.c
78
const __m128 kThresh = _mm_set1_ps(aec->
errThresh
);
119
if (absEf > aec->
errThresh
) {
120
absEf = aec->
errThresh
/ (absEf + 1e-10f);
aec_core.c
273
if (absEf > aec->
errThresh
) {
274
absEf = aec->
errThresh
/ (absEf + 1e-10f);
393
aec->
errThresh
= 2e-6f;
397
aec->
errThresh
= 1.5e-6f;
[
all
...]
Completed in 150 milliseconds