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_VIDEO_DECODER_H_ | 5 #ifndef MEDIA_FILTERS_DECRYPTING_VIDEO_DECODER_H_ |
6 #define MEDIA_FILTERS_DECRYPTING_VIDEO_DECODER_H_ | 6 #define MEDIA_FILTERS_DECRYPTING_VIDEO_DECODER_H_ |
7 | 7 |
8 #include "base/callback.h" | 8 #include "base/callback.h" |
9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
10 #include "media/base/decryptor.h" | 10 #include "media/base/decryptor.h" |
(...skipping 15 matching lines...) Expand all Loading... |
26 // that no locks are required for thread safety. | 26 // that no locks are required for thread safety. |
27 class MEDIA_EXPORT DecryptingVideoDecoder : public VideoDecoder { | 27 class MEDIA_EXPORT DecryptingVideoDecoder : public VideoDecoder { |
28 public: | 28 public: |
29 DecryptingVideoDecoder( | 29 DecryptingVideoDecoder( |
30 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner, | 30 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner, |
31 const SetDecryptorReadyCB& set_decryptor_ready_cb); | 31 const SetDecryptorReadyCB& set_decryptor_ready_cb); |
32 virtual ~DecryptingVideoDecoder(); | 32 virtual ~DecryptingVideoDecoder(); |
33 | 33 |
34 // VideoDecoder implementation. | 34 // VideoDecoder implementation. |
35 virtual void Initialize(const VideoDecoderConfig& config, | 35 virtual void Initialize(const VideoDecoderConfig& config, |
36 bool live_mode, | 36 bool low_delay, |
37 const PipelineStatusCB& status_cb, | 37 const PipelineStatusCB& status_cb, |
38 const OutputCB& output_cb) OVERRIDE; | 38 const OutputCB& output_cb) OVERRIDE; |
39 virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer, | 39 virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer, |
40 const DecodeCB& decode_cb) OVERRIDE; | 40 const DecodeCB& decode_cb) OVERRIDE; |
41 virtual void Reset(const base::Closure& closure) OVERRIDE; | 41 virtual void Reset(const base::Closure& closure) OVERRIDE; |
42 virtual void Stop() OVERRIDE; | 42 virtual void Stop() OVERRIDE; |
43 | 43 |
44 private: | 44 private: |
45 // For a detailed state diagram please see this link: http://goo.gl/8jAok | 45 // For a detailed state diagram please see this link: http://goo.gl/8jAok |
46 // TODO(xhwang): Add a ASCII state diagram in this file after this class | 46 // TODO(xhwang): Add a ASCII state diagram in this file after this class |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 // NOTE: Weak pointers must be invalidated before all other member variables. | 113 // NOTE: Weak pointers must be invalidated before all other member variables. |
114 base::WeakPtrFactory<DecryptingVideoDecoder> weak_factory_; | 114 base::WeakPtrFactory<DecryptingVideoDecoder> weak_factory_; |
115 base::WeakPtr<DecryptingVideoDecoder> weak_this_; | 115 base::WeakPtr<DecryptingVideoDecoder> weak_this_; |
116 | 116 |
117 DISALLOW_COPY_AND_ASSIGN(DecryptingVideoDecoder); | 117 DISALLOW_COPY_AND_ASSIGN(DecryptingVideoDecoder); |
118 }; | 118 }; |
119 | 119 |
120 } // namespace media | 120 } // namespace media |
121 | 121 |
122 #endif // MEDIA_FILTERS_DECRYPTING_VIDEO_DECODER_H_ | 122 #endif // MEDIA_FILTERS_DECRYPTING_VIDEO_DECODER_H_ |
OLD | NEW |