Revert "Remove the aec_quality_min metric."

This reverts commit 99b1bd1553d442ef7d27755567594ac7e65c53b7.

Reason for revert: breaks downstream projects.

Original change's description:
> Remove the aec_quality_min metric.
> 
> Removing this unused metric.
> 
> Bug: webrtc:8563
> Change-Id: I47446d6aaf5dcc3a8ea57f9248576d68bbe2a304
> Reviewed-on: https://webrtc-review.googlesource.com/30720
> Commit-Queue: Gustaf Ullberg <gustaf@webrtc.org>
> Reviewed-by: Fredrik Solenberg <solenberg@webrtc.org>
> Cr-Commit-Position: refs/heads/master@{#21158}

TBR=solenberg@webrtc.org,gustaf@webrtc.org

Change-Id: I90f16915d517123e4bfba39db64424cdcc4ef03f
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: webrtc:8563
Reviewed-on: https://webrtc-review.googlesource.com/31360
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#21160}
This commit is contained in:
Mirko Bonadei
2017-12-08 11:45:40 +00:00
committed by Commit Bot
parent c7c4191325
commit a3fad93d87
2 changed files with 4 additions and 0 deletions

View File

@ -236,6 +236,7 @@ class AudioProcessorInterface : public rtc::RefCountInterface {
echo_return_loss_enhancement(0),
echo_delay_median_ms(0),
echo_delay_std_ms(0),
aec_quality_min(0.0),
residual_echo_likelihood(0.0f),
residual_echo_likelihood_recent_max(0.0f),
aec_divergent_filter_fraction(0.0) {}
@ -246,6 +247,7 @@ class AudioProcessorInterface : public rtc::RefCountInterface {
int echo_return_loss_enhancement;
int echo_delay_median_ms;
int echo_delay_std_ms;
float aec_quality_min;
float residual_echo_likelihood;
float residual_echo_likelihood_recent_max;
float aec_divergent_filter_fraction;