Index: webrtc/modules/audio_processing/echo_cancellation_impl.h |
diff --git a/webrtc/modules/audio_processing/echo_cancellation_impl.h b/webrtc/modules/audio_processing/echo_cancellation_impl.h |
index b58ba596ea85665a28cf300f79897987d6af8123..f67ef7b7da0b9d1dbba186de954982108de5842f 100644 |
--- a/webrtc/modules/audio_processing/echo_cancellation_impl.h |
+++ b/webrtc/modules/audio_processing/echo_cancellation_impl.h |
@@ -48,6 +48,7 @@ class EchoCancellationImpl : public EchoCancellation { |
bool is_extended_filter_enabled() const; |
bool is_aec3_enabled() const; |
std::string GetExperimentsDescription(); |
+ bool is_refined_adaptive_filter_enabled() const; |
// Checks whether the module is enabled. Must only be |
// called from the render side of APM as otherwise |
@@ -102,6 +103,7 @@ class EchoCancellationImpl : public EchoCancellation { |
bool extended_filter_enabled_ GUARDED_BY(crit_capture_); |
bool delay_agnostic_enabled_ GUARDED_BY(crit_capture_); |
bool aec3_enabled_ GUARDED_BY(crit_capture_); |
+ bool refined_adaptive_filter_enabled_ GUARDED_BY(crit_capture_) = false; |
size_t render_queue_element_max_size_ GUARDED_BY(crit_render_) |
GUARDED_BY(crit_capture_); |