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

Unified Diff: media/mp4/mp4_stream_parser.cc

Issue 10803019: Chrome-side implementation of media source timestamp offset (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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/mp4/mp4_stream_parser.h ('k') | media/webm/webm_cluster_parser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/mp4/mp4_stream_parser.cc
diff --git a/media/mp4/mp4_stream_parser.cc b/media/mp4/mp4_stream_parser.cc
index ebaa2a2b4af6f40a3637fa6ca33d77a04265827a..4c2b432b678d50032d3dfec2995c6124887d5f7e 100644
--- a/media/mp4/mp4_stream_parser.cc
+++ b/media/mp4/mp4_stream_parser.cc
@@ -107,6 +107,14 @@ bool MP4StreamParser::Parse(const uint8* buf, int size) {
return true;
}
+void MP4StreamParser::SetTimestampOffset(base::TimeDelta offset) {
+ // TODO(someone else): Implement.
vrk (LEFT CHROMIUM) 2012/07/18 20:37:01 I could either implement these or set an owner for
+}
+
+void MP4StreamParser::ClearTimestampOffset() {
+ // TODO(someone else): Implement.
+}
+
bool MP4StreamParser::ParseBox(bool* err) {
const uint8* buf;
int size;
« no previous file with comments | « media/mp4/mp4_stream_parser.h ('k') | media/webm/webm_cluster_parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698