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

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

Issue 20136002: Reland r212023 "Rename VideoDecoder::ReadCB to VideoDecoder::DecodeCB." (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix content_browsertests failure. Created 7 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « media/base/video_decoder.h ('k') | media/filters/decrypting_video_decoder.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) 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 17 matching lines...) Expand all
28 public: 28 public:
29 DecryptingVideoDecoder( 29 DecryptingVideoDecoder(
30 const scoped_refptr<base::MessageLoopProxy>& message_loop, 30 const scoped_refptr<base::MessageLoopProxy>& message_loop,
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 const PipelineStatusCB& status_cb) OVERRIDE; 36 const PipelineStatusCB& status_cb) OVERRIDE;
37 virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer, 37 virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer,
38 const ReadCB& read_cb) OVERRIDE; 38 const DecodeCB& decode_cb) OVERRIDE;
39 virtual void Reset(const base::Closure& closure) OVERRIDE; 39 virtual void Reset(const base::Closure& closure) OVERRIDE;
40 virtual void Stop(const base::Closure& closure) OVERRIDE; 40 virtual void Stop(const base::Closure& closure) OVERRIDE;
41 41
42 private: 42 private:
43 // For a detailed state diagram please see this link: http://goo.gl/8jAok 43 // For a detailed state diagram please see this link: http://goo.gl/8jAok
44 // TODO(xhwang): Add a ASCII state diagram in this file after this class 44 // TODO(xhwang): Add a ASCII state diagram in this file after this class
45 // stabilizes. 45 // stabilizes.
46 enum State { 46 enum State {
47 kUninitialized = 0, 47 kUninitialized = 0,
48 kDecryptorRequested, 48 kDecryptorRequested,
(...skipping 29 matching lines...) Expand all
78 // Free decoder resources and call |stop_cb_|. 78 // Free decoder resources and call |stop_cb_|.
79 void DoStop(); 79 void DoStop();
80 80
81 scoped_refptr<base::MessageLoopProxy> message_loop_; 81 scoped_refptr<base::MessageLoopProxy> message_loop_;
82 base::WeakPtrFactory<DecryptingVideoDecoder> weak_factory_; 82 base::WeakPtrFactory<DecryptingVideoDecoder> weak_factory_;
83 base::WeakPtr<DecryptingVideoDecoder> weak_this_; 83 base::WeakPtr<DecryptingVideoDecoder> weak_this_;
84 84
85 State state_; 85 State state_;
86 86
87 PipelineStatusCB init_cb_; 87 PipelineStatusCB init_cb_;
88 ReadCB read_cb_; 88 DecodeCB decode_cb_;
89 base::Closure reset_cb_; 89 base::Closure reset_cb_;
90 90
91 VideoDecoderConfig config_; 91 VideoDecoderConfig config_;
92 92
93 // Callback to request/cancel decryptor creation notification. 93 // Callback to request/cancel decryptor creation notification.
94 SetDecryptorReadyCB set_decryptor_ready_cb_; 94 SetDecryptorReadyCB set_decryptor_ready_cb_;
95 95
96 Decryptor* decryptor_; 96 Decryptor* decryptor_;
97 97
98 // The buffer that needs decrypting/decoding. 98 // The buffer that needs decrypting/decoding.
99 scoped_refptr<media::DecoderBuffer> pending_buffer_to_decode_; 99 scoped_refptr<media::DecoderBuffer> pending_buffer_to_decode_;
100 100
101 // Indicates the situation where new key is added during pending decode 101 // Indicates the situation where new key is added during pending decode
102 // (in other words, this variable can only be set in state kPendingDecode). 102 // (in other words, this variable can only be set in state kPendingDecode).
103 // If this variable is true and kNoKey is returned then we need to try 103 // If this variable is true and kNoKey is returned then we need to try
104 // decrypting/decoding again in case the newly added key is the correct 104 // decrypting/decoding again in case the newly added key is the correct
105 // decryption key. 105 // decryption key.
106 bool key_added_while_decode_pending_; 106 bool key_added_while_decode_pending_;
107 107
108 // A unique ID to trace Decryptor::DecryptAndDecodeVideo() call and the 108 // A unique ID to trace Decryptor::DecryptAndDecodeVideo() call and the
109 // matching DecryptCB call (in DoDeliverFrame()). 109 // matching DecryptCB call (in DoDeliverFrame()).
110 uint32 trace_id_; 110 uint32 trace_id_;
111 111
112 DISALLOW_COPY_AND_ASSIGN(DecryptingVideoDecoder); 112 DISALLOW_COPY_AND_ASSIGN(DecryptingVideoDecoder);
113 }; 113 };
114 114
115 } // namespace media 115 } // namespace media
116 116
117 #endif // MEDIA_FILTERS_DECRYPTING_VIDEO_DECODER_H_ 117 #endif // MEDIA_FILTERS_DECRYPTING_VIDEO_DECODER_H_
OLDNEW
« no previous file with comments | « media/base/video_decoder.h ('k') | media/filters/decrypting_video_decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698