Upload upstream chromium 94.0.4606.31
[platform/framework/web/chromium-efl.git] / media / filters / decrypting_video_decoder.cc
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
3 // found in the LICENSE file.
4
5 #include "media/filters/decrypting_video_decoder.h"
6
7 #include "base/bind.h"
8 #include "base/callback_helpers.h"
9 #include "base/location.h"
10 #include "base/logging.h"
11 #include "base/sequenced_task_runner.h"
12 #include "base/strings/string_number_conversions.h"
13 #include "base/trace_event/trace_event.h"
14 #include "media/base/bind_to_current_loop.h"
15 #include "media/base/cdm_context.h"
16 #include "media/base/decoder_buffer.h"
17 #include "media/base/media_log.h"
18 #include "media/base/video_frame.h"
19
20 namespace media {
21
22 const char DecryptingVideoDecoder::kDecoderName[] = "DecryptingVideoDecoder";
23
24 DecryptingVideoDecoder::DecryptingVideoDecoder(
25     const scoped_refptr<base::SequencedTaskRunner>& task_runner,
26     MediaLog* media_log)
27     : task_runner_(task_runner), media_log_(media_log) {
28   DETACH_FROM_SEQUENCE(sequence_checker_);
29 }
30
31 VideoDecoderType DecryptingVideoDecoder::GetDecoderType() const {
32   return VideoDecoderType::kDecrypting;
33 }
34
35 void DecryptingVideoDecoder::Initialize(const VideoDecoderConfig& config,
36                                         bool /* low_delay */,
37                                         CdmContext* cdm_context,
38                                         InitCB init_cb,
39                                         const OutputCB& output_cb,
40                                         const WaitingCB& waiting_cb) {
41   DVLOG(2) << __func__ << ": " << config.AsHumanReadableString();
42
43   DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
44   DCHECK(state_ == kUninitialized || state_ == kIdle ||
45          state_ == kDecodeFinished)
46       << state_;
47   DCHECK(!decode_cb_);
48   DCHECK(!reset_cb_);
49   DCHECK(config.IsValidConfig());
50
51   init_cb_ = BindToCurrentLoop(std::move(init_cb));
52
53   if (!cdm_context) {
54     // Once we have a CDM context, one should always be present.
55     DCHECK(!support_clear_content_);
56     std::move(init_cb_).Run(StatusCode::kDecoderMissingCdmForEncryptedContent);
57     return;
58   }
59
60   if (!config.is_encrypted() && !support_clear_content_) {
61     std::move(init_cb_).Run(StatusCode::kClearContentUnsupported);
62     return;
63   }
64
65   // Once initialized with encryption support, the value is sticky, so we'll use
66   // the decryptor for clear content as well.
67   support_clear_content_ = true;
68
69   output_cb_ = BindToCurrentLoop(output_cb);
70   config_ = config;
71
72   DCHECK(waiting_cb);
73   waiting_cb_ = waiting_cb;
74
75   if (state_ == kUninitialized) {
76     if (!cdm_context->GetDecryptor()) {
77       DVLOG(1) << __func__ << ": no decryptor";
78       std::move(init_cb_).Run(StatusCode::kDecoderFailedInitialization);
79       return;
80     }
81
82     decryptor_ = cdm_context->GetDecryptor();
83     event_cb_registration_ = cdm_context->RegisterEventCB(
84         base::BindRepeating(&DecryptingVideoDecoder::OnCdmContextEvent,
85                             weak_factory_.GetWeakPtr()));
86   } else {
87     // Reinitialization (i.e. upon a config change). The new config can be
88     // encrypted or clear.
89     decryptor_->DeinitializeDecoder(Decryptor::kVideo);
90   }
91
92   state_ = kPendingDecoderInit;
93   decryptor_->InitializeVideoDecoder(
94       config_, BindToCurrentLoop(
95                    base::BindOnce(&DecryptingVideoDecoder::FinishInitialization,
96                                   weak_factory_.GetWeakPtr())));
97 }
98
99 bool DecryptingVideoDecoder::SupportsDecryption() const {
100   return true;
101 }
102
103 void DecryptingVideoDecoder::Decode(scoped_refptr<DecoderBuffer> buffer,
104                                     DecodeCB decode_cb) {
105   DVLOG(3) << "Decode()";
106   DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
107   DCHECK(state_ == kIdle || state_ == kDecodeFinished || state_ == kError)
108       << state_;
109   DCHECK(decode_cb);
110   CHECK(!decode_cb_) << "Overlapping decodes are not supported.";
111
112   decode_cb_ = BindToCurrentLoop(std::move(decode_cb));
113
114   if (state_ == kError) {
115     std::move(decode_cb_).Run(DecodeStatus::DECODE_ERROR);
116     return;
117   }
118
119   // Return empty frames if decoding has finished.
120   if (state_ == kDecodeFinished) {
121     std::move(decode_cb_).Run(DecodeStatus::OK);
122     return;
123   }
124
125   pending_buffer_to_decode_ = std::move(buffer);
126   state_ = kPendingDecode;
127   DecodePendingBuffer();
128 }
129
130 void DecryptingVideoDecoder::Reset(base::OnceClosure closure) {
131   DVLOG(2) << "Reset() - state: " << state_;
132   DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
133   DCHECK(state_ == kIdle || state_ == kPendingDecode ||
134          state_ == kWaitingForKey || state_ == kDecodeFinished ||
135          state_ == kError)
136       << state_;
137   DCHECK(!init_cb_);  // No Reset() during pending initialization.
138   DCHECK(!reset_cb_);
139
140   reset_cb_ = BindToCurrentLoop(std::move(closure));
141
142   decryptor_->ResetDecoder(Decryptor::kVideo);
143
144   // Reset() cannot complete if the decode callback is still pending.
145   // Defer the resetting process in this case. The |reset_cb_| will be fired
146   // after the decode callback is fired - see DecryptAndDecodeBuffer() and
147   // DeliverFrame().
148   if (state_ == kPendingDecode) {
149     DCHECK(decode_cb_);
150     return;
151   }
152
153   if (state_ == kWaitingForKey) {
154     CompleteWaitingForDecryptionKey();
155     DCHECK(decode_cb_);
156     pending_buffer_to_decode_.reset();
157     std::move(decode_cb_).Run(DecodeStatus::ABORTED);
158   }
159
160   DCHECK(!decode_cb_);
161   DoReset();
162 }
163
164 DecryptingVideoDecoder::~DecryptingVideoDecoder() {
165   DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
166
167   if (state_ == kUninitialized)
168     return;
169
170   if (state_ == kWaitingForKey)
171     CompleteWaitingForDecryptionKey();
172   if (state_ == kPendingDecode)
173     CompletePendingDecode(Decryptor::kError);
174
175   if (decryptor_) {
176     decryptor_->DeinitializeDecoder(Decryptor::kVideo);
177     decryptor_ = nullptr;
178   }
179   pending_buffer_to_decode_.reset();
180   if (init_cb_)
181     std::move(init_cb_).Run(StatusCode::kDecoderInitializeNeverCompleted);
182   if (decode_cb_)
183     std::move(decode_cb_).Run(DecodeStatus::ABORTED);
184   if (reset_cb_)
185     std::move(reset_cb_).Run();
186 }
187
188 void DecryptingVideoDecoder::FinishInitialization(bool success) {
189   DVLOG(2) << "FinishInitialization()";
190   DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
191   DCHECK_EQ(state_, kPendingDecoderInit) << state_;
192   DCHECK(init_cb_);
193   DCHECK(!reset_cb_);   // No Reset() before initialization finished.
194   DCHECK(!decode_cb_);  // No Decode() before initialization finished.
195
196   if (!success) {
197     DVLOG(1) << __func__ << ": failed to init video decoder on decryptor";
198     std::move(init_cb_).Run(StatusCode::kDecoderInitializeNeverCompleted);
199     decryptor_ = nullptr;
200     event_cb_registration_.reset();
201     state_ = kError;
202     return;
203   }
204
205   // Success!
206   state_ = kIdle;
207   std::move(init_cb_).Run(OkStatus());
208 }
209
210 void DecryptingVideoDecoder::DecodePendingBuffer() {
211   DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
212   DCHECK_EQ(state_, kPendingDecode) << state_;
213
214   // Note: Traces require a unique ID per decode, if we ever support multiple
215   // in flight decodes, the trace begin+end macros need the same unique id.
216   DCHECK_EQ(GetMaxDecodeRequests(), 1);
217   TRACE_EVENT_ASYNC_BEGIN1(
218       "media", "DecryptingVideoDecoder::DecodePendingBuffer", this,
219       "timestamp_us",
220       pending_buffer_to_decode_->end_of_stream()
221           ? 0
222           : pending_buffer_to_decode_->timestamp().InMicroseconds());
223
224   decryptor_->DecryptAndDecodeVideo(
225       pending_buffer_to_decode_,
226       BindToCurrentLoop(base::BindRepeating(
227           &DecryptingVideoDecoder::DeliverFrame, weak_factory_.GetWeakPtr())));
228 }
229
230 void DecryptingVideoDecoder::DeliverFrame(Decryptor::Status status,
231                                           scoped_refptr<VideoFrame> frame) {
232   DVLOG(3) << "DeliverFrame() - status: " << status;
233   DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
234   DCHECK_EQ(state_, kPendingDecode) << state_;
235   DCHECK(decode_cb_);
236   DCHECK(pending_buffer_to_decode_.get());
237   CompletePendingDecode(status);
238
239   bool need_to_try_again_if_nokey_is_returned = key_added_while_decode_pending_;
240   key_added_while_decode_pending_ = false;
241
242   scoped_refptr<DecoderBuffer> scoped_pending_buffer_to_decode =
243       std::move(pending_buffer_to_decode_);
244
245   if (reset_cb_) {
246     std::move(decode_cb_).Run(DecodeStatus::ABORTED);
247     DoReset();
248     return;
249   }
250
251   DCHECK_EQ(status == Decryptor::kSuccess, frame.get() != nullptr);
252
253   if (status == Decryptor::kError) {
254     DVLOG(2) << "DeliverFrame() - kError";
255     MEDIA_LOG(ERROR, media_log_) << GetDecoderType() << ": decode error";
256     state_ = kError;
257     std::move(decode_cb_).Run(DecodeStatus::DECODE_ERROR);
258     return;
259   }
260
261   if (status == Decryptor::kNoKey) {
262     std::string key_id =
263         scoped_pending_buffer_to_decode->decrypt_config()->key_id();
264     std::string log_message =
265         "no key for key ID " + base::HexEncode(key_id.data(), key_id.size()) +
266         "; will resume decoding after new usable key is available";
267     DVLOG(1) << __func__ << ": " << log_message;
268     MEDIA_LOG(INFO, media_log_) << GetDecoderType() << ": " << log_message;
269
270     // Set |pending_buffer_to_decode_| back as we need to try decoding the
271     // pending buffer again when new key is added to the decryptor.
272     pending_buffer_to_decode_ = std::move(scoped_pending_buffer_to_decode);
273
274     if (need_to_try_again_if_nokey_is_returned) {
275       // The |state_| is still kPendingDecode.
276       MEDIA_LOG(INFO, media_log_)
277           << GetDecoderType() << ": key was added, resuming decode";
278       DecodePendingBuffer();
279       return;
280     }
281
282     TRACE_EVENT_ASYNC_BEGIN0(
283         "media", "DecryptingVideoDecoder::WaitingForDecryptionKey", this);
284     state_ = kWaitingForKey;
285     waiting_cb_.Run(WaitingReason::kNoDecryptionKey);
286     return;
287   }
288
289   if (status == Decryptor::kNeedMoreData) {
290     DVLOG(2) << "DeliverFrame() - kNeedMoreData";
291     state_ = scoped_pending_buffer_to_decode->end_of_stream() ? kDecodeFinished
292                                                               : kIdle;
293     std::move(decode_cb_).Run(DecodeStatus::OK);
294     return;
295   }
296
297   DCHECK_EQ(status, Decryptor::kSuccess);
298   CHECK(frame);
299
300   // Frame returned with kSuccess should not be an end-of-stream frame.
301   DCHECK(!frame->metadata().end_of_stream);
302
303   // If color space is not set, use the color space in the |config_|.
304   if (!frame->ColorSpace().IsValid()) {
305     DVLOG(3) << "Setting color space using information in the config.";
306     if (config_.color_space_info().IsSpecified())
307       frame->set_color_space(config_.color_space_info().ToGfxColorSpace());
308   }
309
310   output_cb_.Run(std::move(frame));
311
312   if (scoped_pending_buffer_to_decode->end_of_stream()) {
313     // Set |pending_buffer_to_decode_| back as we need to keep flushing the
314     // decryptor.
315     pending_buffer_to_decode_ = std::move(scoped_pending_buffer_to_decode);
316     DecodePendingBuffer();
317     return;
318   }
319
320   state_ = kIdle;
321   std::move(decode_cb_).Run(DecodeStatus::OK);
322 }
323
324 void DecryptingVideoDecoder::OnCdmContextEvent(CdmContext::Event event) {
325   DVLOG(2) << __func__;
326   DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
327
328   if (event != CdmContext::Event::kHasAdditionalUsableKey)
329     return;
330
331   if (state_ == kPendingDecode) {
332     key_added_while_decode_pending_ = true;
333     return;
334   }
335
336   if (state_ == kWaitingForKey) {
337     CompleteWaitingForDecryptionKey();
338     MEDIA_LOG(INFO, media_log_)
339         << GetDecoderType() << ": key added, resuming decode";
340     state_ = kPendingDecode;
341     DecodePendingBuffer();
342   }
343 }
344
345 void DecryptingVideoDecoder::DoReset() {
346   DCHECK(!init_cb_);
347   DCHECK(!decode_cb_);
348   state_ = kIdle;
349   std::move(reset_cb_).Run();
350 }
351
352 void DecryptingVideoDecoder::CompletePendingDecode(Decryptor::Status status) {
353   DCHECK_EQ(state_, kPendingDecode);
354   TRACE_EVENT_ASYNC_END1("media", "DecryptingVideoDecoder::DecodePendingBuffer",
355                          this, "status", Decryptor::GetStatusName(status));
356 }
357
358 void DecryptingVideoDecoder::CompleteWaitingForDecryptionKey() {
359   DCHECK_EQ(state_, kWaitingForKey);
360   TRACE_EVENT_ASYNC_END0(
361       "media", "DecryptingVideoDecoder::WaitingForDecryptionKey", this);
362 }
363
364 }  // namespace media