Home
last modified time | relevance | path

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

/aosp_15_r20/external/webrtc/api/audio/
H A Decho_canceller3_config.h207 float enr_threshold = .25f; member
231 float enr_threshold = 1.f; member
H A Decho_canceller3_config_json.cc366 &cfg.suppressor.dominant_nearend_detection.enr_threshold); in Aec3ConfigFromJsonString()
404 &cfg.suppressor.high_bands_suppression.enr_threshold); in Aec3ConfigFromJsonString()
708 ost << "\"enr_threshold\": " << dnd.enr_threshold << ","; in Aec3ConfigToJsonString()
740 << config.suppressor.high_bands_suppression.enr_threshold << ","; in Aec3ConfigToJsonString()
H A Decho_canceller3_config.cc239 res = res & Limit(&c->suppressor.dominant_nearend_detection.enr_threshold, in Validate()
264 res = res & Limit(&c->suppressor.high_bands_suppression.enr_threshold, 0.f, in Validate()
/aosp_15_r20/external/webrtc/modules/audio_processing/aec3/
H A Decho_canceller3.cc390 adjusted_cfg.suppressor.dominant_nearend_detection.enr_threshold = 0.5f; in AdjustConfig()
393 adjusted_cfg.suppressor.dominant_nearend_detection.enr_threshold = 0.75f; in AdjustConfig()
510 adjusted_cfg.suppressor.dominant_nearend_detection.enr_threshold); in AdjustConfig()
566 adjusted_cfg.suppressor.dominant_nearend_detection.enr_threshold = in AdjustConfig()
618 &adjusted_cfg.suppressor.dominant_nearend_detection.enr_threshold); in AdjustConfig()
H A Decho_canceller3_unittest.cc816 ASSERT_NE(adjusted_config.suppressor.dominant_nearend_detection.enr_threshold, in TEST()
817 default_config.suppressor.dominant_nearend_detection.enr_threshold); in TEST()
853 adjusted_config.suppressor.dominant_nearend_detection.enr_threshold, 1.3); in TEST()
897 ASSERT_EQ(adjusted_config.suppressor.dominant_nearend_detection.enr_threshold, in TEST()
898 default_config.suppressor.dominant_nearend_detection.enr_threshold); in TEST()
H A Ddominant_nearend_detector.cc19 : enr_threshold_(config.enr_threshold), in DominantNearendDetector()
H A Dsuppression_gain.cc181 if (echo_sum > cfg.enr_threshold * noise_sum) { in UpperBandsGain()