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

  /external/webrtc/webrtc/modules/audio_processing/aec/
aec_core_mips.c 719 const float error_threshold = extended_filter_enabled local
    [all...]
aec_core_neon.c 135 const float error_threshold = extended_filter_enabled ? local
139 const float32x4_t kThresh = vmovq_n_f32(error_threshold);
177 if (abs_ef > error_threshold) {
178 abs_ef = error_threshold / (abs_ef + 1e-10f);
aec_core_sse2.c 129 const float error_threshold = extended_filter_enabled local
138 if (abs_ef > error_threshold) {
139 abs_ef = error_threshold / (abs_ef + 1e-10f);
aec_core.c 191 const float error_threshold = extended_filter_enabled local
201 if (abs_ef > error_threshold) {
202 abs_ef = error_threshold / (abs_ef + 1e-10f);
    [all...]

Completed in 234 milliseconds