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

Side by Side Diff: media/base/fake_text_track_stream.h

Issue 23702007: Render inband text tracks in the media pipeline (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: fix compile errors 11/21 #6 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
« no previous file with comments | « media/base/demuxer_stream.h ('k') | media/base/fake_text_track_stream.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/message_loop/message_loop.h"
6 #include "media/base/audio_decoder_config.h"
7 #include "media/base/demuxer_stream.h"
8 #include "media/base/video_decoder_config.h"
9 #include "testing/gmock/include/gmock/gmock.h"
10
11 namespace media {
12
13 // Fake implementation of the DemuxerStream. These are the stream objects
14 // we pass to the text renderer object when streams are added and removed.
15 class FakeTextTrackStream : public DemuxerStream {
16 public:
17 FakeTextTrackStream();
18 virtual ~FakeTextTrackStream();
19
20 // DemuxerStream implementation.
21 virtual void Read(const ReadCB&) OVERRIDE;
22 MOCK_METHOD0(audio_decoder_config, AudioDecoderConfig());
23 MOCK_METHOD0(video_decoder_config, VideoDecoderConfig());
24 virtual Type type() OVERRIDE;
25 MOCK_METHOD0(EnableBitstreamConverter, void());
26
27 void SatisfyPendingRead(const base::TimeDelta& start,
28 const base::TimeDelta& duration,
29 const std::string& id,
30 const std::string& content,
31 const std::string& settings);
32 void AbortPendingRead();
33 void SendEosNotification();
34
35 void Stop();
36
37 MOCK_METHOD0(OnRead, void());
38
39 private:
40 scoped_refptr<base::MessageLoopProxy> message_loop_;
41 ReadCB read_cb_;
42 bool stopping_;
43
44 DISALLOW_COPY_AND_ASSIGN(FakeTextTrackStream);
45 };
46
47 } // namespace media
OLDNEW
« no previous file with comments | « media/base/demuxer_stream.h ('k') | media/base/fake_text_track_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698