aboutsummaryrefslogtreecommitdiff
path: root/webrtc/modules/audio_processing/include/audio_processing.h
diff options
context:
space:
mode:
authorHenrik Lundin <henrik.lundin@webrtc.org>2015-06-16 09:53:23 +0200
committerHenrik Lundin <henrik.lundin@webrtc.org>2015-06-16 07:53:32 +0000
commitb02af18c5cb6d6c3def7f44d27a63068360f4f29 (patch)
tree6477b3cbe973cc0e6165d3892ab5a4bd77285b2b /webrtc/modules/audio_processing/include/audio_processing.h
parent76381d921f817888d9c050d5f2fcbe3de412e0d7 (diff)
downloadwebrtc-b02af18c5cb6d6c3def7f44d27a63068360f4f29.tar.gz
Follow-up: Remove old DelayCorrection AEC config
This is a follow-up to r9401, where the configuration DelayCorrection was replaced by ExtendedFilter. This change also removes the media constraint kExperimentalEchoCancellation which was replaced by kExtendedFilterEchoCancellation in the same CL. Both settings that are now being removed were kept in the code to avoid API breakages. In https://codereview.chromium.org/1167343004, depending code has been updated to avoid breakages. BUG=webrtc:4696 R=bjornv@webrtc.org, tommi@webrtc.org Review URL: https://codereview.webrtc.org/1181413004. Cr-Commit-Position: refs/heads/master@{#9444}
Diffstat (limited to 'webrtc/modules/audio_processing/include/audio_processing.h')
-rw-r--r--webrtc/modules/audio_processing/include/audio_processing.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/webrtc/modules/audio_processing/include/audio_processing.h b/webrtc/modules/audio_processing/include/audio_processing.h
index a4dd0495c2..2163a9ecf2 100644
--- a/webrtc/modules/audio_processing/include/audio_processing.h
+++ b/webrtc/modules/audio_processing/include/audio_processing.h
@@ -54,14 +54,6 @@ class VoiceDetection;
// the delay difference more heavily, and back off from the difference more.
// Adjustments force a readaptation of the filter, so they should be avoided
// except when really necessary.
-// TODO(henrik.lundin): Remove DelayCorrection once ExtendedFilter has
-// propagated through to all channels
-// (https://code.google.com/p/webrtc/issues/detail?id=4696).
-struct DelayCorrection {
- DelayCorrection() : enabled(false) {}
- explicit DelayCorrection(bool enabled) : enabled(enabled) {}
- bool enabled;
-};
struct ExtendedFilter {
ExtendedFilter() : enabled(false) {}
explicit ExtendedFilter(bool enabled) : enabled(enabled) {}