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

Unified Diff: media/base/stream_parser.h

Issue 236023003: Add WebMediaPlayer::timelineOffset() support to WebMediaPlayerImpl. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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: media/base/stream_parser.h
diff --git a/media/base/stream_parser.h b/media/base/stream_parser.h
index c5410e3c385e9d801a30f791ff4f2133e5c35684..f00e9278e05b6909904bf6a60c0e1ef1e0d0579a 100644
--- a/media/base/stream_parser.h
+++ b/media/base/stream_parser.h
@@ -55,10 +55,15 @@ class MEDIA_EXPORT StreamParser {
// occurred.
// Second parameter - Indicates the stream duration. Only contains a valid
// value if the first parameter is true.
- // Third parameters - Indicates that timestampOffset should be updated based
+ // Third parameter - Indicates the wallclock time associated with
scherkus (not reviewing) 2014/04/15 00:53:40 ditto side note: I wonder whether these large b
acolwell GONE FROM CHROMIUM 2014/04/16 01:01:08 Removed wallclock reference.
+ // presentation timestamp 0 if such a mapping exists in
+ // the bytestream. If no mapping exists this parameter
+ // contains null Time object. Only contains a valid
+ // value if the first parameter is true.
+ // Fourth parameters - Indicates that timestampOffset should be updated based
// on the earliest end timestamp (audio or video) provided
// during each NewBuffersCB.
- typedef base::Callback<void(bool, base::TimeDelta, bool)> InitCB;
+ typedef base::Callback<void(bool, base::TimeDelta, base::Time, bool)> InitCB;
// Indicates when new stream configurations have been parsed.
// First parameter - The new audio configuration. If the config is not valid

Powered by Google App Engine
This is Rietveld 408576698