| 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 #ifndef MEDIA_FILTERS_DECRYPTING_DEMUXER_STREAM_H_ | 5 #ifndef MEDIA_FILTERS_DECRYPTING_DEMUXER_STREAM_H_ |
| 6 #define MEDIA_FILTERS_DECRYPTING_DEMUXER_STREAM_H_ | 6 #define MEDIA_FILTERS_DECRYPTING_DEMUXER_STREAM_H_ |
| 7 | 7 |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 void Read(const ReadCB& read_cb) override; | 57 void Read(const ReadCB& read_cb) override; |
| 58 AudioDecoderConfig audio_decoder_config() override; | 58 AudioDecoderConfig audio_decoder_config() override; |
| 59 VideoDecoderConfig video_decoder_config() override; | 59 VideoDecoderConfig video_decoder_config() override; |
| 60 Type type() const override; | 60 Type type() const override; |
| 61 Liveness liveness() const override; | 61 Liveness liveness() const override; |
| 62 void EnableBitstreamConverter() override; | 62 void EnableBitstreamConverter() override; |
| 63 bool SupportsConfigChanges() override; | 63 bool SupportsConfigChanges() override; |
| 64 VideoRotation video_rotation() override; | 64 VideoRotation video_rotation() override; |
| 65 bool enabled() const override; | 65 bool enabled() const override; |
| 66 void set_enabled(bool enabled, base::TimeDelta timestamp) override; | 66 void set_enabled(bool enabled, base::TimeDelta timestamp) override; |
| 67 void SetStreamStatusChangeCB(const StreamStatusChangeCB& cb) override; | |
| 68 | 67 |
| 69 private: | 68 private: |
| 70 // For a detailed state diagram please see this link: http://goo.gl/8jAok | 69 // For a detailed state diagram please see this link: http://goo.gl/8jAok |
| 71 // TODO(xhwang): Add a ASCII state diagram in this file after this class | 70 // TODO(xhwang): Add a ASCII state diagram in this file after this class |
| 72 // stabilizes. | 71 // stabilizes. |
| 73 // TODO(xhwang): Update this diagram for DecryptingDemuxerStream. | 72 // TODO(xhwang): Update this diagram for DecryptingDemuxerStream. |
| 74 enum State { | 73 enum State { |
| 75 kUninitialized = 0, | 74 kUninitialized = 0, |
| 76 kIdle, | 75 kIdle, |
| 77 kPendingDemuxerRead, | 76 kPendingDemuxerRead, |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 | 132 |
| 134 base::WeakPtr<DecryptingDemuxerStream> weak_this_; | 133 base::WeakPtr<DecryptingDemuxerStream> weak_this_; |
| 135 base::WeakPtrFactory<DecryptingDemuxerStream> weak_factory_; | 134 base::WeakPtrFactory<DecryptingDemuxerStream> weak_factory_; |
| 136 | 135 |
| 137 DISALLOW_COPY_AND_ASSIGN(DecryptingDemuxerStream); | 136 DISALLOW_COPY_AND_ASSIGN(DecryptingDemuxerStream); |
| 138 }; | 137 }; |
| 139 | 138 |
| 140 } // namespace media | 139 } // namespace media |
| 141 | 140 |
| 142 #endif // MEDIA_FILTERS_DECRYPTING_DEMUXER_STREAM_H_ | 141 #endif // MEDIA_FILTERS_DECRYPTING_DEMUXER_STREAM_H_ |
| OLD | NEW |