OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // Implements the Demuxer interface. DummyDemuxer returns corresponding | 5 // Implements the Demuxer interface. DummyDemuxer returns corresponding |
6 // DummyDemuxerStream as signal for media pipeline to construct correct | 6 // DummyDemuxerStream as signal for media pipeline to construct correct |
7 // playback channels. Used in WebRTC local video capture pipeline, where | 7 // playback channels. Used in WebRTC local video capture pipeline, where |
8 // demuxing is not needed. | 8 // demuxing is not needed. |
9 | 9 |
10 #ifndef MEDIA_FILTERS_DUMMY_DEMUXER_H_ | 10 #ifndef MEDIA_FILTERS_DUMMY_DEMUXER_H_ |
11 #define MEDIA_FILTERS_DUMMY_DEMUXER_H_ | 11 #define MEDIA_FILTERS_DUMMY_DEMUXER_H_ |
12 | 12 |
13 #include <vector> | 13 #include <vector> |
14 | 14 |
15 #include "media/base/audio_decoder_config.h" | 15 #include "media/base/audio_decoder_config.h" |
16 #include "media/base/demuxer.h" | 16 #include "media/base/demuxer.h" |
17 #include "media/base/video_decoder_config.h" | 17 #include "media/base/video_decoder_config.h" |
18 | 18 |
19 namespace media { | 19 namespace media { |
20 | 20 |
21 class DummyDemuxerStream : public DemuxerStream { | 21 class DummyDemuxerStream : public DemuxerStream { |
22 public: | 22 public: |
23 explicit DummyDemuxerStream(Type type); | 23 explicit DummyDemuxerStream(Type type); |
24 | 24 |
25 // DemuxerStream implementation. | 25 // DemuxerStream implementation. |
26 virtual void Read(const ReadCB& read_cb) OVERRIDE; | 26 virtual void Read(const ReadCB& read_cb) OVERRIDE; |
27 virtual Type type() OVERRIDE; | 27 virtual Type type() OVERRIDE; |
28 virtual const AudioDecoderConfig& audio_decoder_config() OVERRIDE; | 28 virtual const AudioDecoderConfig& audio_decoder_config() OVERRIDE; |
29 virtual const VideoDecoderConfig& video_decoder_config() OVERRIDE; | 29 virtual const VideoDecoderConfig& video_decoder_config() OVERRIDE; |
| 30 virtual bool is_encrypted() OVERRIDE; |
30 virtual void EnableBitstreamConverter() OVERRIDE; | 31 virtual void EnableBitstreamConverter() OVERRIDE; |
31 protected: | 32 protected: |
32 virtual ~DummyDemuxerStream(); | 33 virtual ~DummyDemuxerStream(); |
33 | 34 |
34 private: | 35 private: |
35 Type type_; | 36 Type type_; |
36 AudioDecoderConfig audio_config_; | 37 AudioDecoderConfig audio_config_; |
37 VideoDecoderConfig video_config_; | 38 VideoDecoderConfig video_config_; |
38 | 39 |
39 DISALLOW_COPY_AND_ASSIGN(DummyDemuxerStream); | 40 DISALLOW_COPY_AND_ASSIGN(DummyDemuxerStream); |
(...skipping 15 matching lines...) Expand all Loading... |
55 | 56 |
56 private: | 57 private: |
57 std::vector< scoped_refptr<DummyDemuxerStream> > streams_; | 58 std::vector< scoped_refptr<DummyDemuxerStream> > streams_; |
58 | 59 |
59 DISALLOW_COPY_AND_ASSIGN(DummyDemuxer); | 60 DISALLOW_COPY_AND_ASSIGN(DummyDemuxer); |
60 }; | 61 }; |
61 | 62 |
62 } // namespace media | 63 } // namespace media |
63 | 64 |
64 #endif // MEDIA_FILTERS_DUMMY_DEMUXER_H_ | 65 #endif // MEDIA_FILTERS_DUMMY_DEMUXER_H_ |
OLD | NEW |