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

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

Issue 2567513003: Added basic framework for AEC3 in the audio processing module (Closed)
Patch Set: Changes in response to reviewer comments Created 4 years 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 0c491980c2eb7ba09eb9bda328bf87c88057bd10..36cd80080d3451d969513a1e9c9d809293280c4b 100644
--- a/webrtc/modules/audio_processing/aec/aec_core.h
+++ b/webrtc/modules/audio_processing/aec/aec_core.h
@@ -240,7 +240,6 @@ struct AecCore {
// 1 = extended filter mode enabled, 0 = disabled.
int extended_filter_enabled;
// 1 = next generation aec mode enabled, 0 = disabled.
hlundin-webrtc 2016/12/12 21:35:21 This comment feels abandoned.
peah-webrtc 2016/12/13 11:23:02 Good find! I revised the comment to match the refi
- int aec3_enabled;
bool refined_adaptive_filter_enabled;
// Runtime selection of number of filter partitions.
@@ -310,12 +309,6 @@ 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_aec3(AecCore* self, int enable);
-
-// Returns 1 if the next generation aec is enabled and zero if disabled.
-int WebRtcAec_aec3_enabled(AecCore* self);
-
// Turns on/off the refined adaptive filter feature.
void WebRtcAec_enable_refined_adaptive_filter(AecCore* self, bool enable);

Powered by Google App Engine
This is Rietveld 408576698