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

Unified Diff: webrtc/media/base/mediachannel.h

Issue 2629563003: Added a new echo likelihood stat that reports the maximum value from a previous time period. (Closed)
Patch Set: Small bugfix. Created 3 years, 11 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
Index: webrtc/media/base/mediachannel.h
diff --git a/webrtc/media/base/mediachannel.h b/webrtc/media/base/mediachannel.h
index bf17606af314c6bc2ae2f52de0e9e96ed0cf0c96..70d6268e47a930c8918a5a3192761e72fd311247 100644
--- a/webrtc/media/base/mediachannel.h
+++ b/webrtc/media/base/mediachannel.h
@@ -632,8 +632,8 @@ struct VoiceSenderInfo : public MediaSenderInfo {
echo_return_loss(0),
echo_return_loss_enhancement(0),
residual_echo_likelihood(0.0f),
- typing_noise_detected(false) {
- }
+ residual_echo_likelihood_recent_max(0.0f),
+ typing_noise_detected(false) {}
int ext_seqnum;
int jitter_ms;
@@ -644,6 +644,7 @@ struct VoiceSenderInfo : public MediaSenderInfo {
int echo_return_loss;
int echo_return_loss_enhancement;
float residual_echo_likelihood;
+ float residual_echo_likelihood_recent_max;
bool typing_noise_detected;
};

Powered by Google App Engine
This is Rietveld 408576698