Home
last modified time | relevance | path

Searched refs:subband1 (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/modules/audio_processing/aec3/
Dsubband_nearend_detector.cc25 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/
Decho_canceller3_config_json_unittest.cc27 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/
Decho_canceller3_config.cc244 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()
Decho_canceller3_config.h207 SubbandRegion subband1 = {1, 1}; member
Decho_canceller3_config_json.cc357 &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()