Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(21)

Unified Diff: webrtc/modules/audio_processing/audio_processing_impl.cc

Issue 2884913002: Ensures the residual echo detector does not requiring band-splitting (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_processing/audio_processing_impl.cc
diff --git a/webrtc/modules/audio_processing/audio_processing_impl.cc b/webrtc/modules/audio_processing/audio_processing_impl.cc
index 900a8ec437abdf069ec29e02afe678ea7fb939c5..756cc0cca572b8bb0df7a901f2a58bf8fbf57031 100644
--- a/webrtc/modules/audio_processing/audio_processing_impl.cc
+++ b/webrtc/modules/audio_processing/audio_processing_impl.cc
@@ -220,11 +220,9 @@ bool AudioProcessingImpl::ApmSubmoduleStates::CaptureMultiBandSubModulesActive()
const {
#if WEBRTC_INTELLIGIBILITY_ENHANCER
return CaptureMultiBandProcessingActive() ||
- intelligibility_enhancer_enabled_ ||
- voice_activity_detector_enabled_ || residual_echo_detector_enabled_;
+ intelligibility_enhancer_enabled_ || voice_activity_detector_enabled_;
#else
- return CaptureMultiBandProcessingActive() ||
- voice_activity_detector_enabled_ || residual_echo_detector_enabled_;
+ return CaptureMultiBandProcessingActive() || voice_activity_detector_enabled_;
#endif
}
@@ -240,7 +238,7 @@ bool AudioProcessingImpl::ApmSubmoduleStates::RenderMultiBandSubModulesActive()
const {
return RenderMultiBandProcessingActive() || echo_canceller_enabled_ ||
mobile_echo_controller_enabled_ || adaptive_gain_controller_enabled_ ||
- residual_echo_detector_enabled_ || echo_canceller3_enabled_;
+ echo_canceller3_enabled_;
}
bool AudioProcessingImpl::ApmSubmoduleStates::RenderMultiBandProcessingActive()
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698