Searched refs:max_dec_factor_lf (Results 1 – 7 of 7) sorted by relevance
/external/webrtc/modules/audio_processing/aec3/ |
D | echo_canceller3_unittest.cc | 773 ASSERT_NE(adjusted_config.suppressor.nearend_tuning.max_dec_factor_lf, in TEST() 774 default_config.suppressor.nearend_tuning.max_dec_factor_lf); in TEST() 785 ASSERT_NE(adjusted_config.suppressor.normal_tuning.max_dec_factor_lf, in TEST() 786 default_config.suppressor.normal_tuning.max_dec_factor_lf); in TEST() 812 EXPECT_FLOAT_EQ(adjusted_config.suppressor.nearend_tuning.max_dec_factor_lf, in TEST() 823 EXPECT_FLOAT_EQ(adjusted_config.suppressor.normal_tuning.max_dec_factor_lf, in TEST() 857 ASSERT_EQ(adjusted_config.suppressor.nearend_tuning.max_dec_factor_lf, in TEST() 858 default_config.suppressor.nearend_tuning.max_dec_factor_lf); in TEST() 869 ASSERT_EQ(adjusted_config.suppressor.normal_tuning.max_dec_factor_lf, in TEST() 870 default_config.suppressor.normal_tuning.max_dec_factor_lf); in TEST()
|
D | echo_canceller3.cc | 357 adjusted_cfg.suppressor.normal_tuning.max_dec_factor_lf = .2f; in AdjustConfig() 362 adjusted_cfg.suppressor.nearend_tuning.max_dec_factor_lf = .2f; in AdjustConfig() 402 adjusted_cfg.suppressor.nearend_tuning.max_dec_factor_lf); in AdjustConfig() 420 adjusted_cfg.suppressor.normal_tuning.max_dec_factor_lf); in AdjustConfig() 467 adjusted_cfg.suppressor.nearend_tuning.max_dec_factor_lf = in AdjustConfig() 479 adjusted_cfg.suppressor.normal_tuning.max_dec_factor_lf = in AdjustConfig() 512 &adjusted_cfg.suppressor.nearend_tuning.max_dec_factor_lf); in AdjustConfig() 531 &adjusted_cfg.suppressor.normal_tuning.max_dec_factor_lf); in AdjustConfig() 825 cfg.suppressor.normal_tuning.max_dec_factor_lf = 0.35f; in CreateDefaultConfig()
|
D | suppression_gain.cc | 234 const auto& dec = is_nearend_state ? nearend_params_.max_dec_factor_lf in GetMinGain() 235 : normal_params_.max_dec_factor_lf; in GetMinGain() 414 max_dec_factor_lf(tuning.max_dec_factor_lf) { in GainParameters()
|
D | suppression_gain.h | 102 const float max_dec_factor_lf; member
|
/external/webrtc/api/audio/ |
D | echo_canceller3_config.cc | 90 float max_dec_factor_lf) in Tuning() argument 94 max_dec_factor_lf(max_dec_factor_lf) {} in Tuning() 213 res = res & Limit(&c->suppressor.normal_tuning.max_dec_factor_lf, 0.f, 100.f); in Validate() 229 res & Limit(&c->suppressor.nearend_tuning.max_dec_factor_lf, 0.f, 100.f); in Validate()
|
D | echo_canceller3_config.h | 174 float max_dec_factor_lf); 180 float max_dec_factor_lf; member
|
D | echo_canceller3_config_json.cc | 322 &cfg.suppressor.normal_tuning.max_dec_factor_lf); in Aec3ConfigFromJsonString() 331 &cfg.suppressor.nearend_tuning.max_dec_factor_lf); in Aec3ConfigFromJsonString() 612 << config.suppressor.normal_tuning.max_dec_factor_lf; in Aec3ConfigToJsonString() 628 << config.suppressor.nearend_tuning.max_dec_factor_lf; in Aec3ConfigToJsonString()
|