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

Unified Diff: media/formats/webm/webm_stream_parser.cc

Issue 195973006: Allow StreamParsers to request automatic timestampOffset updates. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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/formats/webm/webm_stream_parser.cc
diff --git a/media/formats/webm/webm_stream_parser.cc b/media/formats/webm/webm_stream_parser.cc
index fcb55deed365b6c0ab464de77e275c9e5a7bef2e..605842fe48830641eb5096cf04ccb6c9052ef3e2 100644
--- a/media/formats/webm/webm_stream_parser.cc
+++ b/media/formats/webm/webm_stream_parser.cc
@@ -215,7 +215,7 @@ int WebMStreamParser::ParseInfoAndTracks(const uint8* data, int size) {
ChangeState(kParsingClusters);
if (!init_cb_.is_null()) {
- init_cb_.Run(true, duration);
+ init_cb_.Run(true, duration, false);
acolwell GONE FROM CHROMIUM 2014/03/17 22:52:17 Please change this code to use base::ResetAndRetur
DaleCurtis 2014/03/18 00:14:02 Done.
init_cb_.Reset();
}

Powered by Google App Engine
This is Rietveld 408576698