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 14 matching lines...) Expand all Loading... |
25 // All public APIs and callbacks are trampolined to the |task_runner_| so | 25 // All public APIs and callbacks are trampolined to the |task_runner_| so |
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 std::string GetDisplayName() const OVERRIDE; |
35 virtual void Initialize(const VideoDecoderConfig& config, | 36 virtual void Initialize(const VideoDecoderConfig& config, |
36 bool low_delay, | 37 bool low_delay, |
37 const PipelineStatusCB& status_cb, | 38 const PipelineStatusCB& status_cb, |
38 const OutputCB& output_cb) OVERRIDE; | 39 const OutputCB& output_cb) OVERRIDE; |
39 virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer, | 40 virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer, |
40 const DecodeCB& decode_cb) OVERRIDE; | 41 const DecodeCB& decode_cb) OVERRIDE; |
41 virtual void Reset(const base::Closure& closure) OVERRIDE; | 42 virtual void Reset(const base::Closure& closure) OVERRIDE; |
42 | 43 |
43 private: | 44 private: |
44 // 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 |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 // NOTE: Weak pointers must be invalidated before all other member variables. | 111 // NOTE: Weak pointers must be invalidated before all other member variables. |
111 base::WeakPtrFactory<DecryptingVideoDecoder> weak_factory_; | 112 base::WeakPtrFactory<DecryptingVideoDecoder> weak_factory_; |
112 base::WeakPtr<DecryptingVideoDecoder> weak_this_; | 113 base::WeakPtr<DecryptingVideoDecoder> weak_this_; |
113 | 114 |
114 DISALLOW_COPY_AND_ASSIGN(DecryptingVideoDecoder); | 115 DISALLOW_COPY_AND_ASSIGN(DecryptingVideoDecoder); |
115 }; | 116 }; |
116 | 117 |
117 } // namespace media | 118 } // namespace media |
118 | 119 |
119 #endif // MEDIA_FILTERS_DECRYPTING_VIDEO_DECODER_H_ | 120 #endif // MEDIA_FILTERS_DECRYPTING_VIDEO_DECODER_H_ |
OLD | NEW |