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

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

Issue 208263018: Add SupportsConfigChanges() to DemuxerStream. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@audioconverterchunk
Patch Set: Make comment not specific to video_decoder_config(). Created 6 years, 9 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
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 15 matching lines...) Expand all
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; 35 virtual void EnableBitstreamConverter() OVERRIDE;
36 virtual bool SupportsConfigChanges() OVERRIDE;
36 37
37 int num_buffers_returned() const { return num_buffers_returned_; } 38 int num_buffers_returned() const { return num_buffers_returned_; }
38 39
39 // Upon the next read, holds the read callback until SatisfyRead() or Reset() 40 // Upon the next read, holds the read callback until SatisfyRead() or Reset()
40 // is called. 41 // is called.
41 void HoldNextRead(); 42 void HoldNextRead();
42 43
43 // Upon the next config change read, holds the read callback until 44 // Upon the next config change read, holds the read callback until
44 // SatisfyRead() or Reset() is called. If there is no config change any more, 45 // SatisfyRead() or Reset() is called. If there is no config change any more,
45 // no read will be held. 46 // no read will be held.
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 // Zero-based number indicating which read operation should be held. -1 means 80 // Zero-based number indicating which read operation should be held. -1 means
80 // no read shall be held. 81 // no read shall be held.
81 int read_to_hold_; 82 int read_to_hold_;
82 83
83 DISALLOW_COPY_AND_ASSIGN(FakeDemuxerStream); 84 DISALLOW_COPY_AND_ASSIGN(FakeDemuxerStream);
84 }; 85 };
85 86
86 } // namespace media 87 } // namespace media
87 88
88 #endif // MEDIA_FILTERS_FAKE_DEMUXER_STREAM_H_ 89 #endif // MEDIA_FILTERS_FAKE_DEMUXER_STREAM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698