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

Unified Diff: webrtc/modules/audio_processing/aec/aec_core.h

Issue 1700703005: Boilerplate code addition in order to be able to test upcoming AEC additions (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 10 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
Index: webrtc/modules/audio_processing/aec/aec_core.h
diff --git a/webrtc/modules/audio_processing/aec/aec_core.h b/webrtc/modules/audio_processing/aec/aec_core.h
index a417c4ef3c2076185367b282a4efded75ab5c763..a753f499a91069e4d1169a36a50be249c9430c73 100644
--- a/webrtc/modules/audio_processing/aec/aec_core.h
+++ b/webrtc/modules/audio_processing/aec/aec_core.h
@@ -111,6 +111,13 @@ void WebRtcAec_enable_delay_agnostic(AecCore* self, int enable);
// enabled and zero if disabled.
int WebRtcAec_delay_agnostic_enabled(AecCore* self);
+// Non-zero enables, zero disables.
+void WebRtcAec_enable_next_generation_aec(AecCore* self, int enable);
+
+// Returns non-zero if the next generation aec is
hlundin-webrtc 2016/02/16 07:49:20 Why not be more specific and define that it return
peah-webrtc 2016/02/16 12:51:34 Done.
+// enabled and zero if disabled.
+int WebRtcAec_next_generation_aec_enabled(AecCore* self);
+
// Enables or disables extended filter mode. Non-zero enables, zero disables.
void WebRtcAec_enable_extended_filter(AecCore* self, int enable);

Powered by Google App Engine
This is Rietveld 408576698