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

Unified Diff: webrtc/api/mediastreaminterface.h

Issue 1866983002: Add AEC filter divergence metric to StatsCollector. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: alphabetical ordering Created 4 years, 8 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 | « no previous file | 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 2a3f3473b021172b4e7bc17c92b7bb49ba370c6e..57c0776a322f56e6761e00d77a8b4c8735a38d4b 100644
--- a/webrtc/api/mediastreaminterface.h
+++ b/webrtc/api/mediastreaminterface.h
@@ -215,7 +215,8 @@ class AudioProcessorInterface : public rtc::RefCountInterface {
echo_return_loss_enhancement(0),
echo_delay_median_ms(0),
aec_quality_min(0.0),
- echo_delay_std_ms(0) {}
+ echo_delay_std_ms(0),
+ aec_divergent_filter_fraction(0.0) {}
~AudioProcessorStats() {}
bool typing_noise_detected;
@@ -224,6 +225,7 @@ class AudioProcessorInterface : public rtc::RefCountInterface {
int echo_delay_median_ms;
float aec_quality_min;
int echo_delay_std_ms;
+ float aec_divergent_filter_fraction;
};
// Get audio processor statistics.
« no previous file with comments | « no previous file | webrtc/api/statscollector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698