From c0a67baa360231f3eec05d9bc12da86fb160f228 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20de=20Vicente=20Pe=C3=B1a?= Date: Fri, 21 Dec 2018 10:50:06 +0100 Subject: [PATCH] AEC3: moving the dumping of the Erle to aec state MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bug: webrtc:10154 Change-Id: I3b4cbfe218f6ed1be273f4545b159dc4d90ba587 Reviewed-on: https://webrtc-review.googlesource.com/c/115402 Reviewed-by: Per Ã…hgren Reviewed-by: Gustaf Ullberg Commit-Queue: Jesus de Vicente Pena Cr-Commit-Position: refs/heads/master@{#26082} --- modules/audio_processing/aec3/aec_state.cc | 1 + modules/audio_processing/aec3/signal_dependent_erle_estimator.cc | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/audio_processing/aec3/aec_state.cc b/modules/audio_processing/aec3/aec_state.cc index 45b361fc59..a8f6a0162b 100644 --- a/modules/audio_processing/aec3/aec_state.cc +++ b/modules/audio_processing/aec3/aec_state.cc @@ -261,6 +261,7 @@ void AecState::Update( reverb_model_estimator_.Dump(data_dumper_.get()); data_dumper_->DumpRaw("aec3_erl", Erl()); data_dumper_->DumpRaw("aec3_erl_time_domain", ErlTimeDomain()); + data_dumper_->DumpRaw("aec3_erle", Erle()); data_dumper_->DumpRaw("aec3_usable_linear_estimate", UsableLinearEstimate()); data_dumper_->DumpRaw("aec3_transparent_mode", TransparentMode()); data_dumper_->DumpRaw("aec3_filter_delay", filter_analyzer_.DelayBlocks()); diff --git a/modules/audio_processing/aec3/signal_dependent_erle_estimator.cc b/modules/audio_processing/aec3/signal_dependent_erle_estimator.cc index 32b36ab215..1a01c6dc19 100644 --- a/modules/audio_processing/aec3/signal_dependent_erle_estimator.cc +++ b/modules/audio_processing/aec3/signal_dependent_erle_estimator.cc @@ -201,7 +201,6 @@ void SignalDependentErleEstimator::Dump( for (auto& factor : correction_factors_) { data_dumper->DumpRaw("aec3_erle_correction_factor", factor); } - data_dumper->DumpRaw("aec3_erle", erle_); } // Estimates for each band the smallest number of sections in the filter that