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}
This commit is contained in:
peah 2016-04-19 03:40:09 -07:00 committed by Commit bot
parent ee6e4272a4
commit f3669661bd

View File

@ -415,9 +415,9 @@ bool EchoCancellationImpl::is_aec3_enabled() const {
std::string EchoCancellationImpl::GetExperimentsDescription() { std::string EchoCancellationImpl::GetExperimentsDescription() {
rtc::CritScope cs(crit_capture_); rtc::CritScope cs(crit_capture_);
std::string description = (aec3_enabled_ ? "AEC3" : ""); std::string description = (aec3_enabled_ ? "AEC3;" : "");
if (refined_adaptive_filter_enabled_) { if (refined_adaptive_filter_enabled_) {
description += ";RefinedAdaptiveFilter"; description += "RefinedAdaptiveFilter;";
} }
return description; return description;
} }