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

Side by Side Diff: media/filters/fake_demuxer_stream.h

Issue 560563002: Add default impl for DemuxerStream::EnableBitstreamConverter(); (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments addressed Created 6 years, 3 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 unified diff | Download patch
« no previous file with comments | « media/filters/chunk_demuxer.cc ('k') | media/filters/fake_demuxer_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
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 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 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 #ifndef MEDIA_FILTERS_FAKE_DEMUXER_STREAM_H_ 5 #ifndef MEDIA_FILTERS_FAKE_DEMUXER_STREAM_H_
6 #define MEDIA_FILTERS_FAKE_DEMUXER_STREAM_H_ 6 #define MEDIA_FILTERS_FAKE_DEMUXER_STREAM_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "media/base/audio_decoder_config.h" 10 #include "media/base/audio_decoder_config.h"
(...skipping 14 matching lines...) Expand all
25 FakeDemuxerStream(int num_configs, 25 FakeDemuxerStream(int num_configs,
26 int num_buffers_in_one_config, 26 int num_buffers_in_one_config,
27 bool is_encrypted); 27 bool is_encrypted);
28 virtual ~FakeDemuxerStream(); 28 virtual ~FakeDemuxerStream();
29 29
30 // DemuxerStream implementation. 30 // DemuxerStream implementation.
31 virtual void Read(const ReadCB& read_cb) OVERRIDE; 31 virtual void Read(const ReadCB& read_cb) OVERRIDE;
32 virtual AudioDecoderConfig audio_decoder_config() OVERRIDE; 32 virtual AudioDecoderConfig audio_decoder_config() OVERRIDE;
33 virtual VideoDecoderConfig video_decoder_config() OVERRIDE; 33 virtual VideoDecoderConfig video_decoder_config() OVERRIDE;
34 virtual Type type() OVERRIDE; 34 virtual Type type() OVERRIDE;
35 virtual void EnableBitstreamConverter() OVERRIDE;
36 virtual bool SupportsConfigChanges() OVERRIDE; 35 virtual bool SupportsConfigChanges() OVERRIDE;
37 virtual VideoRotation video_rotation() OVERRIDE; 36 virtual VideoRotation video_rotation() OVERRIDE;
38 37
39 void Initialize(); 38 void Initialize();
40 39
41 int num_buffers_returned() const { return num_buffers_returned_; } 40 int num_buffers_returned() const { return num_buffers_returned_; }
42 41
43 // Upon the next read, holds the read callback until SatisfyRead() or Reset() 42 // Upon the next read, holds the read callback until SatisfyRead() or Reset()
44 // is called. 43 // is called.
45 void HoldNextRead(); 44 void HoldNextRead();
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 // Zero-based number indicating which read operation should be held. -1 means 98 // Zero-based number indicating which read operation should be held. -1 means
100 // no read shall be held. 99 // no read shall be held.
101 int read_to_hold_; 100 int read_to_hold_;
102 101
103 DISALLOW_COPY_AND_ASSIGN(FakeDemuxerStream); 102 DISALLOW_COPY_AND_ASSIGN(FakeDemuxerStream);
104 }; 103 };
105 104
106 } // namespace media 105 } // namespace media
107 106
108 #endif // MEDIA_FILTERS_FAKE_DEMUXER_STREAM_H_ 107 #endif // MEDIA_FILTERS_FAKE_DEMUXER_STREAM_H_
OLDNEW
« no previous file with comments | « media/filters/chunk_demuxer.cc ('k') | media/filters/fake_demuxer_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698