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

Unified Diff: media/filters/chunk_demuxer.cc

Issue 334163002: Revert of Fix seeking when the start time is non-zero. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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/filters/chunk_demuxer.h ('k') | media/filters/ffmpeg_audio_decoder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/chunk_demuxer.cc
diff --git a/media/filters/chunk_demuxer.cc b/media/filters/chunk_demuxer.cc
index d33c7864ce11f8d49584eb9b1117ceb809410ae8..c4afc02c5430fccdb6d1f791c9789fb7fa80f44e 100644
--- a/media/filters/chunk_demuxer.cc
+++ b/media/filters/chunk_demuxer.cc
@@ -1102,6 +1102,10 @@
return NULL;
}
+TimeDelta ChunkDemuxer::GetStartTime() const {
+ return TimeDelta();
+}
+
base::Time ChunkDemuxer::GetTimelineOffset() const {
return timeline_offset_;
}
@@ -1603,7 +1607,7 @@
return;
}
- SeekAllSources(base::TimeDelta());
+ SeekAllSources(GetStartTime());
StartReturningData();
if (duration_ == kNoTimestamp())
« no previous file with comments | « media/filters/chunk_demuxer.h ('k') | media/filters/ffmpeg_audio_decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698