| Index: webrtc/api/mediastreaminterface.h
|
| diff --git a/webrtc/api/mediastreaminterface.h b/webrtc/api/mediastreaminterface.h
|
| index 988ee8438361aaff2dd571fe2e79fa2907a9e14f..f813dda646fb67db5088d906e335923861a2d62a 100644
|
| --- a/webrtc/api/mediastreaminterface.h
|
| +++ b/webrtc/api/mediastreaminterface.h
|
| @@ -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;
|
| };
|
|
|
|
|