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

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

Issue 3011623002: Add new ANA stats to GetStats() to count the number of actions taken by each controller. (Closed)
Patch Set: Addressed review comments. Created 3 years, 3 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 99ed29169b04ae8d446b3df4aba858ece1e2db40..5debe31610c61d58919a58a5c3b269e860ed68f1 100644
--- a/webrtc/media/base/mediachannel.h
+++ b/webrtc/media/base/mediachannel.h
@@ -641,6 +641,11 @@ struct VoiceSenderInfo : public MediaSenderInfo {
float residual_echo_likelihood;
float residual_echo_likelihood_recent_max;
bool typing_noise_detected;
+ rtc::Optional<int> ana_bitrate_action_counter;
+ rtc::Optional<int> ana_channel_action_counter;
+ rtc::Optional<int> ana_dtx_action_counter;
+ rtc::Optional<int> ana_fec_action_counter;
+ rtc::Optional<int> ana_frame_length_action_counter;
hbos 2017/09/04 08:49:54 Should there be one field that is ANAStats instead
ivoc 2017/09/04 15:48:01 Sounds like a good idea, done.
};
struct VoiceReceiverInfo : public MediaReceiverInfo {

Powered by Google App Engine
This is Rietveld 408576698