Home
last modified time | relevance | path

Searched refs:enr_threshold (Results 1 – 7 of 7) sorted by relevance

/external/webrtc/api/audio/
Decho_canceller3_config.h193 float enr_threshold = .25f; member
216 float enr_threshold = 1.f; member
Decho_canceller3_config_json.cc337 &cfg.suppressor.dominant_nearend_detection.enr_threshold); in Aec3ConfigFromJsonString()
372 &cfg.suppressor.high_bands_suppression.enr_threshold); in Aec3ConfigFromJsonString()
632 << config.suppressor.dominant_nearend_detection.enr_threshold << ","; in Aec3ConfigToJsonString()
665 << config.suppressor.high_bands_suppression.enr_threshold << ","; in Aec3ConfigToJsonString()
Decho_canceller3_config.cc231 res = res & Limit(&c->suppressor.dominant_nearend_detection.enr_threshold, in Validate()
256 res = res & Limit(&c->suppressor.high_bands_suppression.enr_threshold, 0.f, in Validate()
/external/webrtc/modules/audio_processing/aec3/
Ddominant_nearend_detector.cc19 : enr_threshold_(config.enr_threshold), in DominantNearendDetector()
Decho_canceller3.cc311 adjusted_cfg.suppressor.dominant_nearend_detection.enr_threshold = 0.5f; in AdjustConfig()
314 adjusted_cfg.suppressor.dominant_nearend_detection.enr_threshold = 0.75f; in AdjustConfig()
423 adjusted_cfg.suppressor.dominant_nearend_detection.enr_threshold); in AdjustConfig()
481 adjusted_cfg.suppressor.dominant_nearend_detection.enr_threshold = in AdjustConfig()
535 &adjusted_cfg.suppressor.dominant_nearend_detection.enr_threshold); in AdjustConfig()
Decho_canceller3_unittest.cc787 ASSERT_NE(adjusted_config.suppressor.dominant_nearend_detection.enr_threshold, in TEST()
788 default_config.suppressor.dominant_nearend_detection.enr_threshold); in TEST()
826 adjusted_config.suppressor.dominant_nearend_detection.enr_threshold, 1.3); in TEST()
871 ASSERT_EQ(adjusted_config.suppressor.dominant_nearend_detection.enr_threshold, in TEST()
872 default_config.suppressor.dominant_nearend_detection.enr_threshold); in TEST()
Dsuppression_gain.cc179 if (echo_sum > cfg.enr_threshold * noise_sum) { in UpperBandsGain()