From f3669661bd4f68bad086bcc2cdb0c84ff2613b42 Mon Sep 17 00:00:00 2001 From: peah Date: Tue, 19 Apr 2016 03:40:09 -0700 Subject: [PATCH] Removed the issue with the leading semicolon in the audio processing module experiment description that was present when AEC3 was not activated and when RefinedAdaptiveFilter was activated. BUG=webrtc:5778, webrtc:5777 Review URL: https://codereview.webrtc.org/1899123002 Cr-Commit-Position: refs/heads/master@{#12424} --- webrtc/modules/audio_processing/echo_cancellation_impl.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webrtc/modules/audio_processing/echo_cancellation_impl.cc b/webrtc/modules/audio_processing/echo_cancellation_impl.cc index c18ed94bd2..5a7aef6fdf 100644 --- a/webrtc/modules/audio_processing/echo_cancellation_impl.cc +++ b/webrtc/modules/audio_processing/echo_cancellation_impl.cc @@ -415,9 +415,9 @@ bool EchoCancellationImpl::is_aec3_enabled() const { std::string EchoCancellationImpl::GetExperimentsDescription() { rtc::CritScope cs(crit_capture_); - std::string description = (aec3_enabled_ ? "AEC3" : ""); + std::string description = (aec3_enabled_ ? "AEC3;" : ""); if (refined_adaptive_filter_enabled_) { - description += ";RefinedAdaptiveFilter"; + description += "RefinedAdaptiveFilter;"; } return description; }