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

Unified Diff: media/base/pipeline_status.h

Issue 496723003: [Feature might be dropped] VideoPlaybackQuality.totalFrameDelay Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: NOT READY FOR REVIEW Created 6 years, 4 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 | « media/base/pipeline.cc ('k') | media/filters/video_renderer_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/pipeline_status.h
diff --git a/media/base/pipeline_status.h b/media/base/pipeline_status.h
index 15e5c9dd76ca5b8416d10f705ccf41be17749143..ac9de6d1a00f50abd3dd2e3a5e756e3fa449f14a 100644
--- a/media/base/pipeline_status.h
+++ b/media/base/pipeline_status.h
@@ -44,13 +44,15 @@ struct PipelineStatistics {
: audio_bytes_decoded(0),
video_bytes_decoded(0),
video_frames_decoded(0),
- video_frames_dropped(0) {
+ video_frames_dropped(0),
+ total_frame_delay(0) {
}
uint32 audio_bytes_decoded; // Should be uint64?
uint32 video_bytes_decoded; // Should be uint64?
uint32 video_frames_decoded;
uint32 video_frames_dropped;
+ double total_frame_delay;
};
// Used for updating pipeline statistics.
« no previous file with comments | « media/base/pipeline.cc ('k') | media/filters/video_renderer_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698