Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Unified Diff: webrtc/api/mediastreaminterface.h

Issue 2431443003: Add a placeholder stat for logging the estimated residual echo likelihood. (Closed)
Patch Set: Fredrik's comments. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/api/call/audio_send_stream.h ('k') | webrtc/api/statscollector.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
};
« no previous file with comments | « webrtc/api/call/audio_send_stream.h ('k') | webrtc/api/statscollector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698