Searched refs:subband1 (Results 1 – 5 of 5) sorted by relevance
/external/webrtc/modules/audio_processing/aec3/ |
D | subband_nearend_detector.cc | 25 1.f / (config_.subband1.high - config_.subband1.low + 1)), in SubbandNearendDetector() 46 std::accumulate(noise.begin() + config_.subband1.low, in Update() 47 noise.begin() + config_.subband1.high + 1, 0.f) * in Update() 52 std::accumulate(nearend.begin() + config_.subband1.low, in Update() 53 nearend.begin() + config_.subband1.high + 1, 0.f) * in Update()
|
/external/webrtc/api/audio/test/ |
D | echo_canceller3_config_json_unittest.cc | 27 cfg.suppressor.subband_nearend_detection.subband1 = {1, 3}; in TEST() 28 cfg.suppressor.subband_nearend_detection.subband1 = {4, 5}; in TEST() 56 EXPECT_EQ(cfg.suppressor.subband_nearend_detection.subband1.low, in TEST() 57 cfg_transformed.suppressor.subband_nearend_detection.subband1.low); in TEST() 58 EXPECT_EQ(cfg.suppressor.subband_nearend_detection.subband1.high, in TEST() 59 cfg_transformed.suppressor.subband_nearend_detection.subband1.high); in TEST()
|
/external/webrtc/api/audio/ |
D | echo_canceller3_config.cc | 244 res & Limit(&c->suppressor.subband_nearend_detection.subband1.low, 0, 65); in Validate() 245 res = res & Limit(&c->suppressor.subband_nearend_detection.subband1.high, in Validate() 246 c->suppressor.subband_nearend_detection.subband1.low, 65); in Validate()
|
D | echo_canceller3_config.h | 207 SubbandRegion subband1 = {1, 1}; member
|
D | echo_canceller3_config_json.cc | 357 &cfg.suppressor.subband_nearend_detection.subband1); in Aec3ConfigFromJsonString() 649 ost << config.suppressor.subband_nearend_detection.subband1.low << ","; in Aec3ConfigToJsonString() 650 ost << config.suppressor.subband_nearend_detection.subband1.high; in Aec3ConfigToJsonString()
|