Home
last modified time | relevance | path

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

/external/webrtc/api/audio/test/
Decho_canceller3_config_json_unittest.cc26 cfg.suppressor.subband_nearend_detection.nearend_average_blocks = 3; in TEST()
27 cfg.suppressor.subband_nearend_detection.subband1 = {1, 3}; in TEST()
28 cfg.suppressor.subband_nearend_detection.subband1 = {4, 5}; in TEST()
29 cfg.suppressor.subband_nearend_detection.nearend_threshold = 2.f; in TEST()
30 cfg.suppressor.subband_nearend_detection.snr_threshold = 100.f; in TEST()
53 EXPECT_EQ(cfg.suppressor.subband_nearend_detection.nearend_average_blocks, in TEST()
54 cfg_transformed.suppressor.subband_nearend_detection 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()
[all …]
/external/webrtc/api/audio/
Decho_canceller3_config.cc241 Limit(&c->suppressor.subband_nearend_detection.nearend_average_blocks, in Validate()
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()
248 res & Limit(&c->suppressor.subband_nearend_detection.subband2.low, 0, 65); in Validate()
249 res = res & Limit(&c->suppressor.subband_nearend_detection.subband2.high, in Validate()
250 c->suppressor.subband_nearend_detection.subband2.low, 65); in Validate()
251 res = res & Limit(&c->suppressor.subband_nearend_detection.nearend_threshold, in Validate()
253 res = res & Limit(&c->suppressor.subband_nearend_detection.snr_threshold, 0.f, in Validate()
Decho_canceller3_config_json.cc355 &cfg.suppressor.subband_nearend_detection.nearend_average_blocks); in Aec3ConfigFromJsonString()
357 &cfg.suppressor.subband_nearend_detection.subband1); in Aec3ConfigFromJsonString()
359 &cfg.suppressor.subband_nearend_detection.subband2); in Aec3ConfigFromJsonString()
361 &cfg.suppressor.subband_nearend_detection.nearend_threshold); in Aec3ConfigFromJsonString()
363 &cfg.suppressor.subband_nearend_detection.snr_threshold); in Aec3ConfigFromJsonString()
646 << config.suppressor.subband_nearend_detection.nearend_average_blocks in Aec3ConfigToJsonString()
649 ost << config.suppressor.subband_nearend_detection.subband1.low << ","; in Aec3ConfigToJsonString()
650 ost << config.suppressor.subband_nearend_detection.subband1.high; in Aec3ConfigToJsonString()
653 ost << config.suppressor.subband_nearend_detection.subband2.low << ","; in Aec3ConfigToJsonString()
654 ost << config.suppressor.subband_nearend_detection.subband2.high; in Aec3ConfigToJsonString()
[all …]
Decho_canceller3_config.h211 } subband_nearend_detection; member
/external/webrtc/modules/audio_processing/aec3/
Dsuppression_gain.cc334 config_.suppressor.subband_nearend_detection, num_capture_channels_);