Remove unused APM voice activity detection sub-module
API changes: - webrtc::AudioProcessing::Config::VoiceDetection removed - webrtc::AudioProcessingStats::voice_detected deprecated - cricket::AudioOptions::typing_detection deprecated - webrtc::StatsReport::StatsValueName:: kStatsValueNameTypingNoiseState deprecated PSA: https://groups.google.com/g/discuss-webrtc/c/7X6uwmJarE0 Bug: webrtc:11226,webrtc:11292 Change-Id: I8d008b56708cf62961b9857ec052b59fda3b41bf Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/250666 Reviewed-by: Harald Alvestrand <hta@webrtc.org> Reviewed-by: Gustaf Ullberg <gustaf@webrtc.org> Reviewed-by: Sam Zackrisson <saza@webrtc.org> Reviewed-by: Björn Terelius <terelius@webrtc.org> Commit-Queue: Alessio Bazzica <alessiob@webrtc.org> Cr-Commit-Position: refs/heads/main@{#35975}
This commit is contained in:
committed by
WebRTC LUCI CQ
parent
cc5532f95a
commit
b4e06d032e
@ -441,7 +441,6 @@ class CallSimulator : public ::testing::TestWithParam<SimulationConfig> {
|
||||
apm_config.gain_controller1.enabled = true;
|
||||
apm_config.gain_controller1.mode =
|
||||
AudioProcessing::Config::GainController1::kAdaptiveDigital;
|
||||
apm_config.voice_detection.enabled = true;
|
||||
apm->ApplyConfig(apm_config);
|
||||
};
|
||||
|
||||
@ -453,7 +452,6 @@ class CallSimulator : public ::testing::TestWithParam<SimulationConfig> {
|
||||
apm_config.noise_suppression.enabled = true;
|
||||
apm_config.gain_controller1.mode =
|
||||
AudioProcessing::Config::GainController1::kAdaptiveDigital;
|
||||
apm_config.voice_detection.enabled = true;
|
||||
apm->ApplyConfig(apm_config);
|
||||
};
|
||||
|
||||
@ -464,7 +462,6 @@ class CallSimulator : public ::testing::TestWithParam<SimulationConfig> {
|
||||
apm_config.echo_canceller.enabled = false;
|
||||
apm_config.gain_controller1.enabled = false;
|
||||
apm_config.noise_suppression.enabled = false;
|
||||
apm_config.voice_detection.enabled = false;
|
||||
apm->ApplyConfig(apm_config);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user