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: media/base/android/video_decoder_job.cc

Issue 1367403003: Added UMA metrics for MediaSourcePlayer and MediaCodecPlayer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mtplayer-drm
Patch Set: Attempt to fix clang compilation Created 5 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
« no previous file with comments | « media/base/android/video_decoder_job.h ('k') | media/media.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/android/video_decoder_job.cc
diff --git a/media/base/android/video_decoder_job.cc b/media/base/android/video_decoder_job.cc
index 2a29d015cc567787aa21b28c3fdc044f2f5de0de..ebb64e172be3119fc5a976a212534ad557f98c96 100644
--- a/media/base/android/video_decoder_job.cc
+++ b/media/base/android/video_decoder_job.cc
@@ -28,10 +28,12 @@ base::LazyInstance<VideoDecoderThread>::Leaky
VideoDecoderJob::VideoDecoderJob(
const base::Closure& request_data_cb,
const base::Closure& request_resources_cb,
- const base::Closure& on_demuxer_config_changed_cb)
+ const base::Closure& on_demuxer_config_changed_cb,
+ FrameStatistics* frame_statistics)
: MediaDecoderJob(g_video_decoder_thread.Pointer()->task_runner(),
request_data_cb,
- on_demuxer_config_changed_cb),
+ on_demuxer_config_changed_cb,
+ frame_statistics),
video_codec_(kUnknownVideoCodec),
config_width_(0),
config_height_(0),
« no previous file with comments | « media/base/android/video_decoder_job.h ('k') | media/media.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698