From d891fd3f6fc8a0af9cfa62db6f17bb80f50a2d69 Mon Sep 17 00:00:00 2001 From: Gustaf Ullberg Date: Thu, 3 Dec 2020 11:17:12 +0100 Subject: [PATCH] Disable HMM based transparent mode classifier MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The HMM based transparent mode classifier is disabled until an issue with diverging filters is resolved. Bug: chromium:1155071 Change-Id: Iee249869f6ece1e48e834b3a4b9249c69a51286c Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/196341 Reviewed-by: Per Ã…hgren Commit-Queue: Gustaf Ullberg Cr-Commit-Position: refs/heads/master@{#32756} --- modules/audio_processing/aec3/transparent_mode.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/audio_processing/aec3/transparent_mode.cc b/modules/audio_processing/aec3/transparent_mode.cc index 3ed0980bf0..f18b0c1fb6 100644 --- a/modules/audio_processing/aec3/transparent_mode.cc +++ b/modules/audio_processing/aec3/transparent_mode.cc @@ -24,7 +24,9 @@ bool DeactivateTransparentMode() { } bool DeactivateTransparentModeHmm() { - return field_trial::IsEnabled("WebRTC-Aec3TransparentModeHmmKillSwitch"); + // HMM based classifier is temporarily disabled (https://crbug.com/1155071). + return true; + // return field_trial::IsEnabled("WebRTC-Aec3TransparentModeHmmKillSwitch"); } } // namespace