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

Side by Side Diff: media/base/demuxer_perftest.cc

Issue 23702007: Render inband text tracks in the media pipeline (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: incorporate aaron's comments (11/12) Created 7 years, 1 month 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/at_exit.h" 5 #include "base/at_exit.h"
6 #include "base/bind.h" 6 #include "base/bind.h"
7 #include "base/message_loop/message_loop.h" 7 #include "base/message_loop/message_loop.h"
8 #include "base/strings/string_number_conversions.h" 8 #include "base/strings/string_number_conversions.h"
9 #include "base/time/time.h" 9 #include "base/time/time.h"
10 #include "media/base/media.h" 10 #include "media/base/media.h"
(...skipping 15 matching lines...) Expand all
26 26
27 // DataSourceHost implementation. 27 // DataSourceHost implementation.
28 virtual void SetTotalBytes(int64 total_bytes) OVERRIDE {} 28 virtual void SetTotalBytes(int64 total_bytes) OVERRIDE {}
29 virtual void AddBufferedByteRange(int64 start, int64 end) OVERRIDE {} 29 virtual void AddBufferedByteRange(int64 start, int64 end) OVERRIDE {}
30 virtual void AddBufferedTimeRange(base::TimeDelta start, 30 virtual void AddBufferedTimeRange(base::TimeDelta start,
31 base::TimeDelta end) OVERRIDE {} 31 base::TimeDelta end) OVERRIDE {}
32 32
33 // DemuxerHost implementation. 33 // DemuxerHost implementation.
34 virtual void SetDuration(base::TimeDelta duration) OVERRIDE {} 34 virtual void SetDuration(base::TimeDelta duration) OVERRIDE {}
35 virtual void OnDemuxerError(media::PipelineStatus error) OVERRIDE {} 35 virtual void OnDemuxerError(media::PipelineStatus error) OVERRIDE {}
36 virtual void AddTextStream(media::DemuxerStream* text_stream,
37 const media::TextTrackConfig& config) OVERRIDE {}
38 virtual void RemoveTextStream(media::DemuxerStream* text_stream) OVERRIDE {}
36 39
37 private: 40 private:
38 DISALLOW_COPY_AND_ASSIGN(DemuxerHostImpl); 41 DISALLOW_COPY_AND_ASSIGN(DemuxerHostImpl);
39 }; 42 };
40 43
41 static void QuitLoopWithStatus(base::MessageLoop* message_loop, 44 static void QuitLoopWithStatus(base::MessageLoop* message_loop,
42 media::PipelineStatus status) { 45 media::PipelineStatus status) {
43 CHECK_EQ(status, media::PIPELINE_OK); 46 CHECK_EQ(status, media::PIPELINE_OK);
44 message_loop->PostTask(FROM_HERE, base::MessageLoop::QuitWhenIdleClosure()); 47 message_loop->PostTask(FROM_HERE, base::MessageLoop::QuitWhenIdleClosure());
45 } 48 }
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 #endif 220 #endif
218 #if defined(OS_CHROMEOS) 221 #if defined(OS_CHROMEOS)
219 RunDemuxerBenchmark("media/test/data/bear.flac"); 222 RunDemuxerBenchmark("media/test/data/bear.flac");
220 #endif 223 #endif
221 #if defined(USE_PROPRIETARY_CODECS) && defined(OS_CHROMEOS) 224 #if defined(USE_PROPRIETARY_CODECS) && defined(OS_CHROMEOS)
222 RunDemuxerBenchmark("media/test/data/bear.avi"); 225 RunDemuxerBenchmark("media/test/data/bear.avi");
223 #endif 226 #endif
224 } 227 }
225 228
226 } // namespace media 229 } // namespace media
OLDNEW
« no previous file with comments | « media/base/demuxer.h ('k') | media/base/demuxer_stream.h » ('j') | media/base/pipeline.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698