| Index: webrtc/modules/audio_processing/echo_cancellation_impl.cc
|
| diff --git a/webrtc/modules/audio_processing/echo_cancellation_impl.cc b/webrtc/modules/audio_processing/echo_cancellation_impl.cc
|
| index 810ea8965542a146de325fc144376c98993dd6a0..12ea75efe1b65ff9f3da7bda63d027426c449830 100644
|
| --- a/webrtc/modules/audio_processing/echo_cancellation_impl.cc
|
| +++ b/webrtc/modules/audio_processing/echo_cancellation_impl.cc
|
| @@ -413,6 +413,11 @@ bool EchoCancellationImpl::is_aec3_enabled() const {
|
| return aec3_enabled_;
|
| }
|
|
|
| +std::string EchoCancellationImpl::GetExperimentsDescription() {
|
| + rtc::CritScope cs(crit_capture_);
|
| + return aec3_enabled_ ? "AEC3" : "";
|
| +}
|
| +
|
| bool EchoCancellationImpl::is_extended_filter_enabled() const {
|
| rtc::CritScope cs(crit_capture_);
|
| return extended_filter_enabled_;
|
|
|