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

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

Issue 2421193003: Implement framesEncoded stat in video send ssrc stats. (Closed)
Patch Set: Change type of stat int -> uint32_t. 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/statstypes.cc ('k') | webrtc/media/engine/webrtcvideoengine2.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/media/base/mediachannel.h
diff --git a/webrtc/media/base/mediachannel.h b/webrtc/media/base/mediachannel.h
index b71a309233546f941150431bf5df4aca8f46b095..68f7df179c2db20edad713fe97536bea43567de0 100644
--- a/webrtc/media/base/mediachannel.h
+++ b/webrtc/media/base/mediachannel.h
@@ -665,8 +665,8 @@ struct VideoSenderInfo : public MediaSenderInfo {
adapt_reason(0),
adapt_changes(0),
avg_encode_ms(0),
- encode_usage_percent(0) {
- }
+ encode_usage_percent(0),
+ frames_encoded(0) {}
std::vector<SsrcGroup> ssrc_groups;
std::string encoder_implementation_name;
@@ -684,6 +684,7 @@ struct VideoSenderInfo : public MediaSenderInfo {
int adapt_changes;
int avg_encode_ms;
int encode_usage_percent;
+ uint32_t frames_encoded;
};
struct VideoReceiverInfo : public MediaReceiverInfo {
« no previous file with comments | « webrtc/api/statstypes.cc ('k') | webrtc/media/engine/webrtcvideoengine2.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698