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_AUDIO_DECODER_H_ | 5 #ifndef MEDIA_FILTERS_DECRYPTING_AUDIO_DECODER_H_ |
6 #define MEDIA_FILTERS_DECRYPTING_AUDIO_DECODER_H_ | 6 #define MEDIA_FILTERS_DECRYPTING_AUDIO_DECODER_H_ |
7 | 7 |
8 #include "base/callback.h" | 8 #include "base/callback.h" |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
(...skipping 25 matching lines...) Expand all Loading... |
36 // format designated by kSupportedBitsPerChannel. | 36 // format designated by kSupportedBitsPerChannel. |
37 // TODO(xhwang): Remove this restriction after http://crbug.com/169105 fixed. | 37 // TODO(xhwang): Remove this restriction after http://crbug.com/169105 fixed. |
38 static const int kSupportedBitsPerChannel; | 38 static const int kSupportedBitsPerChannel; |
39 | 39 |
40 DecryptingAudioDecoder( | 40 DecryptingAudioDecoder( |
41 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner, | 41 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner, |
42 const SetDecryptorReadyCB& set_decryptor_ready_cb); | 42 const SetDecryptorReadyCB& set_decryptor_ready_cb); |
43 virtual ~DecryptingAudioDecoder(); | 43 virtual ~DecryptingAudioDecoder(); |
44 | 44 |
45 // AudioDecoder implementation. | 45 // AudioDecoder implementation. |
46 virtual void Initialize(DemuxerStream* stream, | 46 virtual void Initialize(const AudioDecoderConfig& config, |
47 const PipelineStatusCB& status_cb, | 47 const PipelineStatusCB& status_cb) OVERRIDE; |
48 const StatisticsCB& statistics_cb) OVERRIDE; | 48 virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer, |
49 virtual void Read(const ReadCB& read_cb) OVERRIDE; | 49 const DecodeCB& decode_cb) OVERRIDE; |
| 50 virtual scoped_refptr<AudioBuffer> GetDecodeOutput() OVERRIDE; |
50 virtual void Reset(const base::Closure& closure) OVERRIDE; | 51 virtual void Reset(const base::Closure& closure) OVERRIDE; |
51 virtual void Stop(const base::Closure& closure) OVERRIDE; | 52 virtual void Stop(const base::Closure& closure) OVERRIDE; |
52 virtual int bits_per_channel() OVERRIDE; | 53 virtual int bits_per_channel() OVERRIDE; |
53 virtual ChannelLayout channel_layout() OVERRIDE; | 54 virtual ChannelLayout channel_layout() OVERRIDE; |
54 virtual int samples_per_second() OVERRIDE; | 55 virtual int samples_per_second() OVERRIDE; |
55 | 56 |
56 private: | 57 private: |
57 // For a detailed state diagram please see this link: http://goo.gl/8jAok | 58 // For a detailed state diagram please see this link: http://goo.gl/8jAok |
58 // TODO(xhwang): Add a ASCII state diagram in this file after this class | 59 // TODO(xhwang): Add a ASCII state diagram in this file after this class |
59 // stabilizes. | 60 // stabilizes. |
60 // TODO(xhwang): Update this diagram for DecryptingAudioDecoder. | 61 // TODO(xhwang): Update this diagram for DecryptingAudioDecoder. |
61 enum State { | 62 enum State { |
62 kUninitialized = 0, | 63 kUninitialized = 0, |
63 kDecryptorRequested, | 64 kDecryptorRequested, |
64 kPendingDecoderInit, | 65 kPendingDecoderInit, |
65 kIdle, | 66 kIdle, |
66 kPendingConfigChange, | |
67 kPendingDemuxerRead, | |
68 kPendingDecode, | 67 kPendingDecode, |
69 kWaitingForKey, | 68 kWaitingForKey, |
70 kDecodeFinished, | 69 kDecodeFinished, |
71 kStopped, | 70 kStopped, |
72 }; | 71 }; |
73 | 72 |
74 // Callback for DecryptorHost::RequestDecryptor(). | 73 // Callback for DecryptorHost::RequestDecryptor(). |
75 void SetDecryptor(Decryptor* decryptor); | 74 void SetDecryptor(Decryptor* decryptor); |
76 | 75 |
77 // Callback for Decryptor::InitializeAudioDecoder() during initialization. | 76 // Callback for Decryptor::InitializeAudioDecoder() during initialization. |
78 void FinishInitialization(bool success); | 77 void FinishInitialization(bool success); |
79 | 78 |
80 // Callback for Decryptor::InitializeAudioDecoder() during config change. | |
81 void FinishConfigChange(bool success); | |
82 | |
83 // Reads from the demuxer stream with corresponding callback method. | |
84 void ReadFromDemuxerStream(); | |
85 void DecryptAndDecodeBuffer(DemuxerStream::Status status, | |
86 const scoped_refptr<DecoderBuffer>& buffer); | |
87 | |
88 void DecodePendingBuffer(); | 79 void DecodePendingBuffer(); |
89 | 80 |
90 // Callback for Decryptor::DecryptAndDecodeAudio(). | 81 // Callback for Decryptor::DecryptAndDecodeAudio(). |
91 void DeliverFrame(int buffer_size, | 82 void DeliverFrame(int buffer_size, |
92 Decryptor::Status status, | 83 Decryptor::Status status, |
93 const Decryptor::AudioBuffers& frames); | 84 const Decryptor::AudioBuffers& frames); |
94 | 85 |
95 // Callback for the |decryptor_| to notify this object that a new key has been | 86 // Callback for the |decryptor_| to notify this object that a new key has been |
96 // added. | 87 // added. |
97 void OnKeyAdded(); | 88 void OnKeyAdded(); |
98 | 89 |
99 // Resets decoder and calls |reset_cb_|. | 90 // Resets decoder and calls |reset_cb_|. |
100 void DoReset(); | 91 void DoReset(); |
101 | 92 |
102 // Updates audio configs from |demuxer_stream_| and resets | 93 // Updates audio configs from |demuxer_stream_| and resets |
103 // |output_timestamp_base_| and |total_samples_decoded_|. | 94 // |output_timestamp_base_| and |total_samples_decoded_|. |
104 void UpdateDecoderConfig(); | 95 void UpdateDecoderConfig(); |
105 | 96 |
106 // Sets timestamp and duration for |queued_audio_frames_| to make sure the | 97 // Sets timestamp and duration for |queued_audio_frames_| to make sure the |
107 // renderer always receives continuous frames without gaps and overlaps. | 98 // renderer always receives continuous frames without gaps and overlaps. |
108 void EnqueueFrames(const Decryptor::AudioBuffers& frames); | 99 void EnqueueFrames(const Decryptor::AudioBuffers& frames); |
109 | 100 |
110 scoped_refptr<base::SingleThreadTaskRunner> task_runner_; | 101 scoped_refptr<base::SingleThreadTaskRunner> task_runner_; |
111 base::WeakPtrFactory<DecryptingAudioDecoder> weak_factory_; | 102 base::WeakPtrFactory<DecryptingAudioDecoder> weak_factory_; |
112 base::WeakPtr<DecryptingAudioDecoder> weak_this_; | 103 base::WeakPtr<DecryptingAudioDecoder> weak_this_; |
113 | 104 |
114 State state_; | 105 State state_; |
115 | 106 |
116 PipelineStatusCB init_cb_; | 107 PipelineStatusCB init_cb_; |
117 StatisticsCB statistics_cb_; | 108 DecodeCB decode_cb_; |
118 ReadCB read_cb_; | |
119 base::Closure reset_cb_; | 109 base::Closure reset_cb_; |
120 base::Closure stop_cb_; | 110 base::Closure stop_cb_; |
121 | 111 |
122 // Pointer to the demuxer stream that will feed us compressed buffers. | 112 // The current decoder configuration. |
123 DemuxerStream* demuxer_stream_; | 113 AudioDecoderConfig config_; |
124 | 114 |
125 // Callback to request/cancel decryptor creation notification. | 115 // Callback to request/cancel decryptor creation notification. |
126 SetDecryptorReadyCB set_decryptor_ready_cb_; | 116 SetDecryptorReadyCB set_decryptor_ready_cb_; |
127 | 117 |
128 Decryptor* decryptor_; | 118 Decryptor* decryptor_; |
129 | 119 |
130 // The buffer returned by the demuxer that needs decrypting/decoding. | 120 // The buffer that needs decrypting/decoding. |
131 scoped_refptr<media::DecoderBuffer> pending_buffer_to_decode_; | 121 scoped_refptr<media::DecoderBuffer> pending_buffer_to_decode_; |
132 | 122 |
133 // Indicates the situation where new key is added during pending decode | 123 // Indicates the situation where new key is added during pending decode |
134 // (in other words, this variable can only be set in state kPendingDecode). | 124 // (in other words, this variable can only be set in state kPendingDecode). |
135 // If this variable is true and kNoKey is returned then we need to try | 125 // If this variable is true and kNoKey is returned then we need to try |
136 // decrypting/decoding again in case the newly added key is the correct | 126 // decrypting/decoding again in case the newly added key is the correct |
137 // decryption key. | 127 // decryption key. |
138 bool key_added_while_decode_pending_; | 128 bool key_added_while_decode_pending_; |
139 | 129 |
140 Decryptor::AudioBuffers queued_audio_frames_; | 130 Decryptor::AudioBuffers queued_audio_frames_; |
141 | 131 |
142 // Decoded audio format. | 132 // Decoded audio format. |
143 int bits_per_channel_; | 133 int bits_per_channel_; |
144 ChannelLayout channel_layout_; | 134 ChannelLayout channel_layout_; |
145 int samples_per_second_; | 135 int samples_per_second_; |
146 | 136 |
147 scoped_ptr<AudioTimestampHelper> timestamp_helper_; | 137 scoped_ptr<AudioTimestampHelper> timestamp_helper_; |
148 | 138 |
149 DISALLOW_COPY_AND_ASSIGN(DecryptingAudioDecoder); | 139 DISALLOW_COPY_AND_ASSIGN(DecryptingAudioDecoder); |
150 }; | 140 }; |
151 | 141 |
152 } // namespace media | 142 } // namespace media |
153 | 143 |
154 #endif // MEDIA_FILTERS_DECRYPTING_AUDIO_DECODER_H_ | 144 #endif // MEDIA_FILTERS_DECRYPTING_AUDIO_DECODER_H_ |
OLD | NEW |