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

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

Issue 2423823003: Implement framesDecoded stat in video receive ssrc stats. (Closed)
Patch Set: Add #include <memory> to receive_statistics_proxy_unittest.cc. 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 f3cebee160de481aaeb2d36e3f8e2f9e30267cb3..afad14cd9dd5caf24abe6ff6174bd061500043d8 100644
--- a/webrtc/media/base/mediachannel.h
+++ b/webrtc/media/base/mediachannel.h
@@ -711,6 +711,7 @@ struct VideoReceiverInfo : public MediaReceiverInfo {
framerate_output(0),
framerate_render_input(0),
framerate_render_output(0),
+ frames_decoded(0),
decode_ms(0),
max_decode_ms(0),
jitter_buffer_ms(0),
@@ -736,6 +737,7 @@ struct VideoReceiverInfo : public MediaReceiverInfo {
int framerate_render_input;
// Framerate that the renderer reports.
int framerate_render_output;
+ uint32_t frames_decoded;
// All stats below are gathered per-VideoReceiver, but some will be correlated
// across MediaStreamTracks. NOTE(hta): when sinking stats into per-SSRC
« 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