Home
last modified time | relevance | path

Searched refs:dominant_nearend_detection (Results 1 – 6 of 6) sorted by relevance

/external/webrtc/modules/audio_processing/aec3/
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()
790 adjusted_config.suppressor.dominant_nearend_detection.enr_exit_threshold, in TEST()
791 default_config.suppressor.dominant_nearend_detection.enr_exit_threshold); in TEST()
792 ASSERT_NE(adjusted_config.suppressor.dominant_nearend_detection.snr_threshold, in TEST()
793 default_config.suppressor.dominant_nearend_detection.snr_threshold); in TEST()
794 ASSERT_NE(adjusted_config.suppressor.dominant_nearend_detection.hold_duration, in TEST()
795 default_config.suppressor.dominant_nearend_detection.hold_duration); in TEST()
797 adjusted_config.suppressor.dominant_nearend_detection.trigger_threshold, in TEST()
798 default_config.suppressor.dominant_nearend_detection.trigger_threshold); in TEST()
[all …]
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()
426 adjusted_cfg.suppressor.dominant_nearend_detection.enr_exit_threshold); in AdjustConfig()
429 adjusted_cfg.suppressor.dominant_nearend_detection.snr_threshold); in AdjustConfig()
432 adjusted_cfg.suppressor.dominant_nearend_detection.hold_duration); in AdjustConfig()
435 adjusted_cfg.suppressor.dominant_nearend_detection.trigger_threshold); in AdjustConfig()
481 adjusted_cfg.suppressor.dominant_nearend_detection.enr_threshold = in AdjustConfig()
483 adjusted_cfg.suppressor.dominant_nearend_detection.enr_exit_threshold = in AdjustConfig()
485 adjusted_cfg.suppressor.dominant_nearend_detection.snr_threshold = in AdjustConfig()
[all …]
Dsuppression_gain.cc337 config_.suppressor.dominant_nearend_detection, num_capture_channels_);
/external/webrtc/api/audio/
Decho_canceller3_config_json.cc337 &cfg.suppressor.dominant_nearend_detection.enr_threshold); in Aec3ConfigFromJsonString()
339 &cfg.suppressor.dominant_nearend_detection.enr_exit_threshold); in Aec3ConfigFromJsonString()
341 &cfg.suppressor.dominant_nearend_detection.snr_threshold); in Aec3ConfigFromJsonString()
343 &cfg.suppressor.dominant_nearend_detection.hold_duration); in Aec3ConfigFromJsonString()
345 &cfg.suppressor.dominant_nearend_detection.trigger_threshold); in Aec3ConfigFromJsonString()
348 &cfg.suppressor.dominant_nearend_detection.use_during_initial_phase); in Aec3ConfigFromJsonString()
632 << config.suppressor.dominant_nearend_detection.enr_threshold << ","; in Aec3ConfigToJsonString()
634 << config.suppressor.dominant_nearend_detection.enr_exit_threshold << ","; in Aec3ConfigToJsonString()
636 << config.suppressor.dominant_nearend_detection.snr_threshold << ","; in Aec3ConfigToJsonString()
638 << config.suppressor.dominant_nearend_detection.hold_duration << ","; in Aec3ConfigToJsonString()
[all …]
Decho_canceller3_config.cc231 res = res & Limit(&c->suppressor.dominant_nearend_detection.enr_threshold, in Validate()
233 res = res & Limit(&c->suppressor.dominant_nearend_detection.snr_threshold, in Validate()
235 res = res & Limit(&c->suppressor.dominant_nearend_detection.hold_duration, 0, in Validate()
237 res = res & Limit(&c->suppressor.dominant_nearend_detection.trigger_threshold, in Validate()
Decho_canceller3_config.h199 } dominant_nearend_detection; member