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

Unified Diff: media/base/demuxer.cc

Issue 23702007: Render inband text tracks in the media pipeline (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 4 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/demuxer.cc
diff --git a/media/base/demuxer.cc b/media/base/demuxer.cc
index 6cd4e29a48178e3724ee691203bc9523a87bb2ed..332993779a1b8cb62bd0adbe1f4e2b5c409ab87c 100644
--- a/media/base/demuxer.cc
+++ b/media/base/demuxer.cc
@@ -28,4 +28,12 @@ void Demuxer::Stop(const base::Closure& callback) {
void Demuxer::OnAudioRendererDisabled() {}
+int Demuxer::GetStreamCount() const {
+ return 0;
+}
+
+DemuxerStream* Demuxer::GetStreamByIndex(int index) {
+ return NULL;
+}
+
} // namespace media

Powered by Google App Engine
This is Rietveld 408576698