Searched refs:dominant_nearend_detection (Results 1 – 6 of 6) sorted by relevance
/external/webrtc/modules/audio_processing/aec3/ |
D | echo_canceller3_unittest.cc | 787 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 …]
|
D | echo_canceller3.cc | 311 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 …]
|
D | suppression_gain.cc | 337 config_.suppressor.dominant_nearend_detection, num_capture_channels_);
|
/external/webrtc/api/audio/ |
D | echo_canceller3_config_json.cc | 337 &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 …]
|
D | echo_canceller3_config.cc | 231 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()
|
D | echo_canceller3_config.h | 199 } dominant_nearend_detection; member
|