Add a placeholder stat for logging the estimated residual echo likelihood.

The stat is currently always set to zero until the residual echo detector has landed.

BUG=webrtc:6525

Review-Url: https://codereview.webrtc.org/2431443003
Cr-Commit-Position: refs/heads/master@{#14721}
This commit is contained in:
ivoc
2016-10-21 04:10:03 -07:00
committed by Commit bot
parent 3355f6d6f5
commit 8c63a82bf5
11 changed files with 35 additions and 7 deletions

View File

@ -195,8 +195,9 @@ class AudioProcessorInterface : public rtc::RefCountInterface {
echo_return_loss(0),
echo_return_loss_enhancement(0),
echo_delay_median_ms(0),
aec_quality_min(0.0),
echo_delay_std_ms(0),
aec_quality_min(0.0),
residual_echo_likelihood(0.0f),
aec_divergent_filter_fraction(0.0) {}
~AudioProcessorStats() {}
@ -204,8 +205,9 @@ class AudioProcessorInterface : public rtc::RefCountInterface {
int echo_return_loss;
int echo_return_loss_enhancement;
int echo_delay_median_ms;
float aec_quality_min;
int echo_delay_std_ms;
float aec_quality_min;
float residual_echo_likelihood;
float aec_divergent_filter_fraction;
};