1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
media / gpu / av1_decoder.cc [blame]
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40285824): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#include "media/gpu/av1_decoder.h"
#include <bitset>
#include <utility>
#include "base/logging.h"
#include "base/memory/ptr_util.h"
#include "base/ranges/algorithm.h"
#include "media/base/limits.h"
#include "media/base/media_switches.h"
#include "media/gpu/av1_picture.h"
#include "third_party/abseil-cpp/absl/cleanup/cleanup.h"
#include "third_party/libgav1/src/src/decoder_state.h"
#include "third_party/libgav1/src/src/gav1/status_code.h"
#include "third_party/libgav1/src/src/utils/constants.h"
#include "ui/gfx/hdr_metadata.h"
namespace media {
namespace {
// (Section 6.4.1):
//
// - "An operating point specifies which spatial and temporal layers should be
// decoded."
//
// - "The order of operating points indicates the preferred order for producing
// an output: a decoder should select the earliest operating point in the list
// that meets its decoding capabilities as expressed by the level associated
// with each operating point."
//
// For simplicity, we always select operating point 0 and will validate that it
// doesn't have scalability information.
constexpr unsigned int kDefaultOperatingPoint = 0;
// Conversion function from libgav1 profiles to media::VideoCodecProfile.
VideoCodecProfile AV1ProfileToVideoCodecProfile(
libgav1::BitstreamProfile profile) {
switch (profile) {
case libgav1::kProfile0:
return AV1PROFILE_PROFILE_MAIN;
case libgav1::kProfile1:
return AV1PROFILE_PROFILE_HIGH;
case libgav1::kProfile2:
return AV1PROFILE_PROFILE_PRO;
default:
// ObuParser::ParseSequenceHeader() validates the profile.
NOTREACHED() << "Invalid profile: " << base::strict_cast<int>(profile);
}
}
// Returns true iff the current decode sequence has multiple spatial layers.
bool IsSpatialLayerDecoding(int operating_point_idc) {
// Spec 6.4.1.
constexpr int kTemporalLayerBitMaskBits = 8;
const int kUsedSpatialLayerBitMask =
(operating_point_idc >> kTemporalLayerBitMaskBits) & 0b1111;
// In case of an only temporal layer encoding e.g. L1T3, spatial layer#0 bit
// is 1. We allow this case.
return kUsedSpatialLayerBitMask > 1;
}
bool IsValidBitDepth(uint8_t bit_depth, VideoCodecProfile profile) {
// Spec 6.4.1.
switch (profile) {
case AV1PROFILE_PROFILE_MAIN:
case AV1PROFILE_PROFILE_HIGH:
return bit_depth == 8u || bit_depth == 10u;
case AV1PROFILE_PROFILE_PRO:
return bit_depth == 8u || bit_depth == 10u || bit_depth == 12u;
default:
NOTREACHED();
}
}
VideoChromaSampling GetAV1ChromaSampling(
const libgav1::ColorConfig& color_config) {
// Spec section 6.4.2
int8_t subsampling_x = color_config.subsampling_x;
int8_t subsampling_y = color_config.subsampling_y;
bool monochrome = color_config.is_monochrome;
if (monochrome) {
return VideoChromaSampling::k400;
} else {
if (subsampling_x == 0 && subsampling_y == 0) {
return VideoChromaSampling::k444;
} else if (subsampling_x == 1u && subsampling_y == 0) {
return VideoChromaSampling::k422;
} else if (subsampling_x == 1u && subsampling_y == 1u) {
return VideoChromaSampling::k420;
} else {
DLOG(WARNING) << "Unknown chroma sampling format.";
return VideoChromaSampling::kUnknown;
}
}
}
gfx::HdrMetadataSmpteSt2086 ToGfxSmpteSt2086(
const libgav1::ObuMetadataHdrMdcv& mdcv) {
constexpr auto kChromaDenominator = 65536.0f;
constexpr auto kLumaMaxDenoninator = 256.0f;
constexpr auto kLumaMinDenoninator = 16384.0f;
// display primaries are in R/G/B order in metadata_hdr_mdcv OBU Metadata.
return gfx::HdrMetadataSmpteSt2086(
{mdcv.primary_chromaticity_x[0] / kChromaDenominator,
mdcv.primary_chromaticity_y[0] / kChromaDenominator,
mdcv.primary_chromaticity_x[1] / kChromaDenominator,
mdcv.primary_chromaticity_y[1] / kChromaDenominator,
mdcv.primary_chromaticity_x[2] / kChromaDenominator,
mdcv.primary_chromaticity_y[2] / kChromaDenominator,
mdcv.white_point_chromaticity_x / kChromaDenominator,
mdcv.white_point_chromaticity_y / kChromaDenominator},
/*luminance_max=*/mdcv.luminance_max / kLumaMaxDenoninator,
/*luminance_min=*/mdcv.luminance_min / kLumaMinDenoninator);
}
gfx::HdrMetadataCta861_3 ToGfxCta861_3(const libgav1::ObuMetadataHdrCll& cll) {
return gfx::HdrMetadataCta861_3(cll.max_cll, cll.max_fall);
}
} // namespace
scoped_refptr<AV1Picture> AV1Decoder::AV1Accelerator::CreateAV1PictureSecure(
bool apply_grain,
uint64_t secure_handle) {
return nullptr;
}
AV1Decoder::AV1Accelerator::Status AV1Decoder::AV1Accelerator::SetStream(
base::span<const uint8_t> stream,
const DecryptConfig* decrypt_config) {
return Status::kOk;
}
AV1Decoder::AV1Decoder(std::unique_ptr<AV1Accelerator> accelerator,
VideoCodecProfile profile,
const VideoColorSpace& container_color_space)
: buffer_pool_(std::make_unique<libgav1::BufferPool>(
/*on_frame_buffer_size_changed=*/nullptr,
/*get_frame_buffer=*/nullptr,
/*release_frame_buffer=*/nullptr,
/*callback_private_data=*/nullptr)),
state_(std::make_unique<libgav1::DecoderState>()),
accelerator_(std::move(accelerator)),
profile_(profile),
container_color_space_(container_color_space) {
ref_frames_.fill(nullptr);
}
AV1Decoder::~AV1Decoder() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
// |buffer_pool_| checks that all the allocated frames are released in its
// dtor. Explicitly destruct |state_| before |buffer_pool_| to release frames
// in |reference_frame| in |state_|.
state_.reset();
}
bool AV1Decoder::Flush() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DVLOG(2) << "Decoder flush";
Reset();
return true;
}
void AV1Decoder::Reset() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
ClearCurrentFrame();
// We must reset the |current_sequence_header_| to ensure we don't try to
// decode frames using an incorrect sequence header. If the first
// DecoderBuffer after the reset doesn't contain a sequence header, we'll just
// skip it and will keep skipping until we get a sequence header.
current_sequence_header_.reset();
stream_id_ = 0;
stream_ = nullptr;
stream_size_ = 0;
on_error_ = false;
state_ = std::make_unique<libgav1::DecoderState>();
ClearReferenceFrames();
parser_.reset();
decrypt_config_.reset();
secure_handle_ = 0;
buffer_pool_ = std::make_unique<libgav1::BufferPool>(
/*on_frame_buffer_size_changed=*/nullptr,
/*get_frame_buffer=*/nullptr,
/*release_frame_buffer=*/nullptr,
/*callback_private_data=*/nullptr);
}
void AV1Decoder::SetStream(int32_t id, const DecoderBuffer& decoder_buffer) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
stream_id_ = id;
stream_ = decoder_buffer.data();
stream_size_ = decoder_buffer.size();
ClearCurrentFrame();
parser_ = base::WrapUnique(new (std::nothrow) libgav1::ObuParser(
decoder_buffer.data(), decoder_buffer.size(), kDefaultOperatingPoint,
buffer_pool_.get(), state_.get()));
if (!parser_) {
on_error_ = true;
return;
}
if (current_sequence_header_)
parser_->set_sequence_header(*current_sequence_header_);
if (decoder_buffer.decrypt_config())
decrypt_config_ = decoder_buffer.decrypt_config()->Clone();
else
decrypt_config_.reset();
if (decoder_buffer.side_data() && decoder_buffer.side_data()->secure_handle) {
secure_handle_ = decoder_buffer.side_data()->secure_handle;
} else {
secure_handle_ = 0;
}
const AV1Accelerator::Status status = accelerator_->SetStream(
base::span(stream_.get(), stream_size_), decrypt_config_.get());
if (status != AV1Accelerator::Status::kOk) {
on_error_ = true;
return;
}
}
void AV1Decoder::ClearCurrentFrame() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
current_frame_.reset();
current_frame_header_.reset();
pending_pic_.reset();
}
AcceleratedVideoDecoder::DecodeResult AV1Decoder::Decode() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (on_error_)
return kDecodeError;
auto result = DecodeInternal();
on_error_ = result == kDecodeError;
return result;
}
AcceleratedVideoDecoder::DecodeResult AV1Decoder::DecodeInternal() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (!parser_) {
DLOG(WARNING) << "Decode() is called before SetStream()";
return kRanOutOfStreamData;
}
while (parser_->HasData() || current_frame_header_) {
absl::Cleanup clear_current_frame = [this] { ClearCurrentFrame(); };
if (pending_pic_) {
const AV1Accelerator::Status status = DecodeAndOutputPicture(
std::move(pending_pic_), parser_->tile_buffers());
if (status == AV1Accelerator::Status::kFail)
return kDecodeError;
if (status == AV1Accelerator::Status::kTryAgain) {
std::move(clear_current_frame).Cancel();
return kTryAgain;
}
// Continue so that we force |clear_current_frame| to run before moving
// on.
continue;
}
if (!current_frame_header_) {
libgav1::StatusCode status_code = parser_->ParseOneFrame(¤t_frame_);
if (status_code != libgav1::kStatusOk) {
DLOG(WARNING) << "Failed to parse OBU: "
<< libgav1::GetErrorString(status_code);
return kDecodeError;
}
if (!current_frame_) {
DLOG(WARNING) << "No frame found. Skipping the current stream";
continue;
}
current_frame_header_ = parser_->frame_header();
// Detects if a new coded video sequence is starting.
if (parser_->sequence_header_changed()) {
if (IsSpatialLayerDecoding(
parser_->sequence_header()
.operating_point_idc[kDefaultOperatingPoint])) {
constexpr size_t kOperatingPointIdcBits = 12;
DVLOG(1) << "Spatial layer decoding is not supported: "
<< "operating_point_idc="
<< std::bitset<kOperatingPointIdcBits>(
parser_->sequence_header()
.operating_point_idc[kDefaultOperatingPoint]);
return kDecodeError;
}
current_sequence_header_ = parser_->sequence_header();
VideoChromaSampling new_chroma_sampling =
GetAV1ChromaSampling(current_sequence_header_->color_config);
if (new_chroma_sampling != chroma_sampling_) {
chroma_sampling_ = new_chroma_sampling;
}
if (chroma_sampling_ != VideoChromaSampling::k420) {
DVLOG(1) << "Only YUV 4:2:0 is supported";
return kDecodeError;
}
const VideoCodecProfile new_profile =
AV1ProfileToVideoCodecProfile(current_sequence_header_->profile);
const uint8_t new_bit_depth = base::checked_cast<uint8_t>(
current_sequence_header_->color_config.bitdepth);
if (!IsValidBitDepth(new_bit_depth, new_profile)) {
DVLOG(1) << "Invalid bit depth="
<< base::strict_cast<int>(new_bit_depth)
<< ", profile=" << GetProfileName(new_profile);
return kDecodeError;
}
const gfx::Size new_frame_size(
base::strict_cast<int>(current_sequence_header_->max_frame_width),
base::strict_cast<int>(current_sequence_header_->max_frame_height));
gfx::Rect new_visible_rect(
base::strict_cast<int>(current_frame_header_->width),
base::strict_cast<int>(current_frame_header_->height));
DCHECK(!new_frame_size.IsEmpty());
if (!gfx::Rect(new_frame_size).Contains(new_visible_rect)) {
DVLOG(1) << "Render size exceeds picture size. render size: "
<< new_visible_rect.ToString()
<< ", picture size: " << new_frame_size.ToString();
new_visible_rect = gfx::Rect(new_frame_size);
}
const auto& cc = current_sequence_header_->color_config;
const VideoColorSpace header_color_space =
VideoColorSpace(cc.color_primary, cc.transfer_characteristics,
cc.matrix_coefficients,
cc.color_range == libgav1::kColorRangeStudio
? gfx::ColorSpace::RangeID::LIMITED
: gfx::ColorSpace::RangeID::FULL);
VideoColorSpace new_color_space;
// For AV1, prefer the frame color space over the config.
if (header_color_space.IsSpecified()) {
new_color_space = header_color_space;
} else if (container_color_space_.IsSpecified()) {
new_color_space = container_color_space_;
}
bool is_color_space_change = false;
if (base::FeatureList::IsEnabled(kAVDColorSpaceChanges)) {
is_color_space_change = new_color_space.IsSpecified() &&
new_color_space != picture_color_space_;
}
ClearReferenceFrames();
// Issues kConfigChange only if either the dimensions, profile or bit
// depth is changed.
if (frame_size_ != new_frame_size ||
visible_rect_ != new_visible_rect || profile_ != new_profile ||
bit_depth_ != new_bit_depth || is_color_space_change) {
DVLOG(1) << "New profile: " << GetProfileName(new_profile)
<< ", new resolution: " << new_frame_size.ToString()
<< ", new visible rect: " << new_visible_rect.ToString()
<< ", new bit depth: "
<< base::strict_cast<int>(new_bit_depth)
<< ", new color space: " << new_color_space.ToString();
frame_size_ = new_frame_size;
visible_rect_ = new_visible_rect;
profile_ = new_profile;
bit_depth_ = new_bit_depth;
picture_color_space_ = new_color_space;
std::move(clear_current_frame).Cancel();
return kConfigChange;
}
}
}
if (!current_sequence_header_) {
// Decoding is not doable because we haven't received a sequence header.
// This occurs when seeking a video.
DVLOG(3) << "Discarded the current frame because no sequence header has "
<< "been found yet";
continue;
}
DCHECK(current_frame_header_);
const auto& frame_header = *current_frame_header_;
if (frame_header.show_existing_frame) {
const size_t frame_to_show =
base::checked_cast<size_t>(frame_header.frame_to_show);
DCHECK_LE(0u, frame_to_show);
DCHECK_LT(frame_to_show, ref_frames_.size());
if (!CheckAndCleanUpReferenceFrames()) {
DLOG(ERROR) << "The states of reference frames are different between "
<< "|ref_frames_| and |state_|";
return kDecodeError;
}
auto pic = ref_frames_[frame_to_show];
CHECK(pic);
pic = pic->Duplicate();
if (!pic) {
DVLOG(1) << "Failed duplication";
return kDecodeError;
}
pic->set_bitstream_id(stream_id_);
if (!accelerator_->OutputPicture(*pic)) {
return kDecodeError;
}
// libgav1::ObuParser sets |current_frame_| to the frame to show while
// |current_frame_header_| is the frame header of the currently parsed
// frame. If |current_frame_| is a keyframe, then refresh_frame_flags must
// be 0xff. Otherwise, refresh_frame_flags must be 0x00 (Section 5.9.2).
DCHECK(current_frame_->frame_type() == libgav1::kFrameKey ||
current_frame_header_->refresh_frame_flags == 0x00);
DCHECK(current_frame_->frame_type() != libgav1::kFrameKey ||
current_frame_header_->refresh_frame_flags == 0xff);
UpdateReferenceFrames(std::move(pic));
continue;
}
if (parser_->tile_buffers().empty()) {
// The last call to ParseOneFrame() didn't actually have any tile groups.
// This could happen in rare cases (for example, if there is a Metadata
// OBU after the TileGroup OBU). Ignore this case.
continue;
}
const gfx::Size current_frame_size(
base::strict_cast<int>(frame_header.width),
base::strict_cast<int>(frame_header.height));
// As per the AV1 spec input video frames can be encoded at a lower
// resolution and then the decoder reconstructs the frames back at the
// scaled resolution. This is called as reference frame scaling.
// In our case the scaled resolution is the one which is specified by
// the sequence header.
// https://gitlab.com/AOMediaCodec/SVT-AV1/-/blob/master/Docs/Appendix-Reference-Scaling.md
if (current_frame_size != frame_size_) {
DVLOG(2) << "Resolution change in the middle of video sequence. "
<< "Frames encoded using reference frame scaling.";
}
if (current_frame_size.width() !=
base::strict_cast<int>(frame_header.upscaled_width)) {
DVLOG(1) << "Super resolution is not supported";
return kDecodeError;
}
// As per the comments in third_party/libgav1/src/src/utils/types.h
// for the ObuFrameHeader structure, the render_width and
// render_height are hints to the application about the desired display
// size. It has no effect on the decoding process. The visible rect should
// be set to the current frames width and height.
const gfx::Rect current_visible_rect(
base::strict_cast<int>(frame_header.width),
base::strict_cast<int>(frame_header.height));
if (current_visible_rect != visible_rect_) {
DVLOG(2) << "Visible rectangle change in the middle of video sequence.";
visible_rect_ = current_visible_rect;
}
// AV1 HDR metadata may appears in the below places:
// 1. Container.
// 2. Bitstream.
// 3. Both container and bitstream.
// Thus we should also extract HDR metadata here in case we
// miss the information.
if (current_frame_->hdr_cll_set()) {
if (!hdr_metadata_.has_value()) {
hdr_metadata_.emplace();
}
hdr_metadata_->cta_861_3 = ToGfxCta861_3(current_frame_->hdr_cll());
}
if (current_frame_->hdr_mdcv_set()) {
if (!hdr_metadata_.has_value()) {
hdr_metadata_.emplace();
}
hdr_metadata_->smpte_st_2086 =
ToGfxSmpteSt2086(current_frame_->hdr_mdcv());
}
DCHECK(current_sequence_header_->film_grain_params_present ||
!frame_header.film_grain_params.apply_grain);
auto pic = secure_handle_ ? accelerator_->CreateAV1PictureSecure(
frame_header.film_grain_params.apply_grain,
secure_handle_)
: accelerator_->CreateAV1Picture(
frame_header.film_grain_params.apply_grain);
if (!pic) {
std::move(clear_current_frame).Cancel();
return kRanOutOfSurfaces;
}
pic->set_visible_rect(current_visible_rect);
pic->set_bitstream_id(stream_id_);
// Set the color space for the picture.
pic->set_colorspace(picture_color_space_);
if (hdr_metadata_)
pic->set_hdr_metadata(hdr_metadata_);
pic->frame_header = frame_header;
if (decrypt_config_)
pic->set_decrypt_config(decrypt_config_->Clone());
const AV1Accelerator::Status status =
DecodeAndOutputPicture(std::move(pic), parser_->tile_buffers());
if (status == AV1Accelerator::Status::kFail)
return kDecodeError;
if (status == AV1Accelerator::Status::kTryAgain) {
std::move(clear_current_frame).Cancel();
return kTryAgain;
}
}
return kRanOutOfStreamData;
}
void AV1Decoder::UpdateReferenceFrames(scoped_refptr<AV1Picture> pic) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(state_);
DCHECK(current_frame_header_);
const uint8_t refresh_frame_flags =
current_frame_header_->refresh_frame_flags;
const std::bitset<libgav1::kNumReferenceFrameTypes> update_reference_frame(
refresh_frame_flags);
for (size_t i = 0; i < libgav1::kNumReferenceFrameTypes; ++i) {
if (update_reference_frame[i])
ref_frames_[i] = pic;
}
state_->UpdateReferenceFrames(current_frame_,
base::strict_cast<int>(refresh_frame_flags));
}
void AV1Decoder::ClearReferenceFrames() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(state_);
ref_frames_.fill(nullptr);
// If AV1Decoder has decided to clear the reference frames, then ObuParser
// must have also decided to do so.
DCHECK_EQ(base::ranges::count(state_->reference_frame, nullptr),
static_cast<int>(state_->reference_frame.size()));
}
bool AV1Decoder::CheckAndCleanUpReferenceFrames() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(state_);
DCHECK(current_frame_header_);
for (size_t i = 0; i < libgav1::kNumReferenceFrameTypes; ++i) {
if (state_->reference_frame[i] && !ref_frames_[i])
return false;
if (!state_->reference_frame[i] && ref_frames_[i])
ref_frames_[i].reset();
}
// If we get here, we know |ref_frames_| includes all and only those frames
// that can be currently used as reference frames. Now we'll assert that for
// non-intra frames, all the necessary reference frames are in |ref_frames_|.
// For intra frames, we don't need this assertion because they shouldn't
// depend on reference frames.
if (!libgav1::IsIntraFrame(current_frame_header_->frame_type)) {
for (size_t i = 0; i < libgav1::kNumInterReferenceFrameTypes; ++i) {
const auto ref_frame_index =
current_frame_header_->reference_frame_index[i];
// Unless an error occurred in libgav1, |ref_frame_index| should be valid,
// and since CheckAndCleanUpReferenceFrames() only gets called if parsing
// succeeded, we can assert that validity.
CHECK_GE(ref_frame_index, 0);
CHECK_LT(ref_frame_index, libgav1::kNumReferenceFrameTypes);
CHECK(ref_frames_[ref_frame_index]);
}
}
// If we get here, we know that all the reference frames needed by the current
// frame are in |ref_frames_|.
return true;
}
AV1Decoder::AV1Accelerator::Status AV1Decoder::DecodeAndOutputPicture(
scoped_refptr<AV1Picture> pic,
const libgav1::Vector<libgav1::TileBuffer>& tile_buffers) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(pic);
DCHECK(current_sequence_header_);
DCHECK(stream_);
DCHECK_GT(stream_size_, 0u);
if (!CheckAndCleanUpReferenceFrames()) {
DLOG(ERROR) << "The states of reference frames are different between "
<< "|ref_frames_| and |state_|";
return AV1Accelerator::Status::kFail;
}
const AV1Accelerator::Status status = accelerator_->SubmitDecode(
*pic, *current_sequence_header_, ref_frames_, tile_buffers,
base::span(stream_.get(), stream_size_));
if (status != AV1Accelerator::Status::kOk) {
if (status == AV1Accelerator::Status::kTryAgain)
pending_pic_ = std::move(pic);
return status;
}
if (pic->frame_header.show_frame && !accelerator_->OutputPicture(*pic))
return AV1Accelerator::Status::kFail;
// |current_frame_header_->refresh_frame_flags| should be 0xff if the frame is
// either a SWITCH_FRAME or a visible KEY_FRAME (Spec 5.9.2).
DCHECK(!(current_frame_header_->frame_type == libgav1::kFrameSwitch ||
(current_frame_header_->frame_type == libgav1::kFrameKey &&
current_frame_header_->show_frame)) ||
current_frame_header_->refresh_frame_flags == 0xff);
UpdateReferenceFrames(std::move(pic));
return AV1Accelerator::Status::kOk;
}
std::optional<gfx::HDRMetadata> AV1Decoder::GetHDRMetadata() const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
return hdr_metadata_;
}
gfx::Size AV1Decoder::GetPicSize() const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
// TODO(hiroh): It should be safer to align this by 64 or 128 (depending on
// use_128x128_superblock) so that a driver doesn't touch out of the buffer.
return frame_size_;
}
gfx::Rect AV1Decoder::GetVisibleRect() const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
return visible_rect_;
}
VideoCodecProfile AV1Decoder::GetProfile() const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
return profile_;
}
uint8_t AV1Decoder::GetBitDepth() const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
return bit_depth_;
}
VideoChromaSampling AV1Decoder::GetChromaSampling() const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
return chroma_sampling_;
}
VideoColorSpace AV1Decoder::GetVideoColorSpace() const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
return picture_color_space_;
}
size_t AV1Decoder::GetRequiredNumOfPictures() const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
constexpr size_t kPicsInPipeline = limits::kMaxVideoFrames + 1;
DCHECK(current_sequence_header_);
return (kPicsInPipeline + GetNumReferenceFrames()) *
(1 + current_sequence_header_->film_grain_params_present);
}
size_t AV1Decoder::GetNumReferenceFrames() const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
return libgav1::kNumReferenceFrameTypes;
}
} // namespace media