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 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747
// Copyright 2022 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
use std::cell::Ref;
use std::cell::RefCell;
use std::cell::RefMut;
use std::rc::Rc;
use log::debug;
use thiserror::Error;
use crate::codec::h264::picture::Field;
use crate::codec::h264::picture::IsIdr;
use crate::codec::h264::picture::PictureData;
use crate::codec::h264::picture::Reference;
// Shortcut to refer to a DPB entry.
//
// The first member of the tuple is the `PictureData` for the frame.
//
// The second member is the backend handle of the frame. It can be `None` if the inserted picture
// is non-existing (i.e. `nonexisting` is true on the `PictureData`).
#[derive(Clone)]
pub struct DpbEntry<T>(pub Rc<RefCell<PictureData>>, pub Option<T>);
pub struct Dpb<T> {
/// List of `PictureData` and backend handles to decoded pictures.
entries: Vec<DpbEntry<T>>,
/// The maximum number of pictures that can be stored.
max_num_pics: usize,
/// Indicates an upper bound for the number of frames buffers, in the
/// decoded picture buffer (DPB), that are required for storing frames,
/// complementary field pairs, and non-paired fields before output. It is a
/// requirement of bitstream conformance that the maximum number of frames,
/// complementary field pairs, or non-paired fields that precede any frame,
/// complementary field pair, or non-paired field in the coded video
/// sequence in decoding order and follow it in output order shall be less
/// than or equal to max_num_reorder_frames.
max_num_reorder_frames: usize,
/// Whether we're decoding in interlaced mode. Interlaced support is
/// inspired by the GStreamer implementation, in which frames are split if
/// interlaced=1. This makes reference marking easier. We also decode both
/// fields to the same surface, and this surface with both fields is
/// outputted only once.
interlaced: bool,
}
#[derive(Debug, Error)]
pub enum StorePictureError {
#[error("DPB is full")]
DpbIsFull,
}
#[derive(Debug, Error)]
pub enum MmcoError {
#[error("could not find a ShortTerm picture to mark in the DPB")]
NoShortTermPic,
#[error("a ShortTerm picture was expected to be marked for MMCO=3")]
ExpectedMarked,
#[error("picture cannot be marked as nonexisting for MMCO=3")]
ExpectedExisting,
}
impl<T: Clone> Dpb<T> {
/// Returns an iterator over the underlying H264 pictures stored in the
/// DPB.
pub fn pictures(&self) -> impl Iterator<Item = Ref<'_, PictureData>> {
self.entries.iter().map(|h| h.0.borrow())
}
/// Returns a mutable iterator over the underlying H264 pictures stored in
/// the DPB.
pub fn pictures_mut(&mut self) -> impl Iterator<Item = RefMut<'_, PictureData>> {
self.entries.iter().map(|h| h.0.borrow_mut())
}
/// Returns the length of the DPB.
pub fn len(&self) -> usize {
self.entries.len()
}
pub fn is_empty(&self) -> bool {
self.len() == 0
}
/// Get a reference to the whole DPB entries.
pub fn entries(&self) -> &Vec<DpbEntry<T>> {
&self.entries
}
/// Set the DPB's limits in terms of maximum number or pictures.
pub fn set_limits(&mut self, max_num_pics: usize, max_num_reorder_frames: usize) {
self.max_num_pics = max_num_pics;
self.max_num_reorder_frames = max_num_reorder_frames;
}
/// Get a reference to the dpb's max num pics.
pub fn max_num_pics(&self) -> usize {
self.max_num_pics
}
// Returns the number of reference frames, counting the first field only if
// dealing with interlaced content.
pub fn num_ref_frames(&self) -> usize {
self.pictures()
.filter(|p| p.is_ref() && !p.is_second_field())
.count()
}
/// Get a reference to the dpb's interlaced mode.
pub fn interlaced(&self) -> bool {
self.interlaced
}
/// Set the dpb's interlaced mode.
pub fn set_interlaced(&mut self, interlaced: bool) {
self.interlaced = interlaced;
}
/// Find the short term reference picture with the lowest `frame_num_wrap`
/// value.
pub fn find_short_term_lowest_frame_num_wrap(&self) -> Option<Rc<RefCell<PictureData>>> {
let lowest = self
.entries
.iter()
.filter(|h| {
let p = h.0.borrow();
matches!(p.reference(), Reference::ShortTerm)
})
.cloned()
.map(|h| h.0)
.min_by_key(|h| {
let p = h.borrow();
p.frame_num_wrap
});
lowest
}
/// Mark all pictures in the DPB as unused for reference.
pub fn mark_all_as_unused_for_ref(&mut self) {
for mut picture in self.pictures_mut() {
picture.set_reference(Reference::None, false);
}
}
/// Remove unused pictures from the DPB. A picture is not going to be used
/// anymore if it's a) not a reference and b) not needed for output
pub fn remove_unused(&mut self) {
self.entries.retain(|handle| {
let pic = handle.0.borrow();
let discard = !pic.is_ref() && !pic.needed_for_output;
if discard {
log::debug!("Removing unused picture {:#?}", pic);
}
!discard
});
}
/// Find a short term reference picture with the given `pic_num` value.
pub fn find_short_term_with_pic_num(&self, pic_num: i32) -> Option<DpbEntry<T>> {
let position = self
.pictures()
.position(|p| matches!(p.reference(), Reference::ShortTerm) && p.pic_num == pic_num);
log::debug!(
"find_short_term_with_pic_num: {}, found position {:?}",
pic_num,
position
);
Some(self.entries[position?].clone())
}
/// Find a long term reference picture with the given `long_term_pic_num`
/// value.
pub fn find_long_term_with_long_term_pic_num(
&self,
long_term_pic_num: i32,
) -> Option<DpbEntry<T>> {
let position = self.pictures().position(|p| {
matches!(p.reference(), Reference::LongTerm) && p.long_term_pic_num == long_term_pic_num
});
log::debug!(
"find_long_term_with_long_term_pic_num: {}, found position {:?}",
long_term_pic_num,
position
);
Some(self.entries[position?].clone())
}
/// Store a picture and its backend handle in the DPB.
pub fn store_picture(
&mut self,
picture: Rc<RefCell<PictureData>>,
handle: Option<T>,
) -> Result<(), StorePictureError> {
let max_pics = if self.interlaced {
self.max_num_pics * 2
} else {
self.max_num_pics
};
if self.entries.len() >= max_pics {
return Err(StorePictureError::DpbIsFull);
}
let mut pic_mut = picture.borrow_mut();
// C.4.2. Decoding of gaps in frame_num and storage of "non-existing"
// pictures
pic_mut.needed_for_output = !pic_mut.nonexisting;
if pic_mut.is_second_field() {
let first_field_rc = pic_mut.other_field().unwrap();
drop(pic_mut);
let mut first_field = first_field_rc.borrow_mut();
first_field.set_second_field_to(&picture);
} else {
drop(pic_mut);
}
let pic = picture.borrow();
debug!(
"Stored picture POC {:?}, field {:?}, the DPB length is {:?}",
pic.pic_order_cnt,
pic.field,
self.entries.len()
);
drop(pic);
self.entries.push(DpbEntry(picture, handle));
Ok(())
}
/// Whether the DPB has an empty slot for a new picture.
pub fn has_empty_frame_buffer(&self) -> bool {
if !self.interlaced {
self.entries.len() < self.max_num_pics
} else {
let count = self
.pictures()
.filter(|pic| {
!pic.is_second_field()
&& (matches!(pic.field, Field::Frame) || pic.other_field().is_some())
})
.count();
count < self.max_num_pics
}
}
/// Whether the DPB needs bumping, as described by clauses 1, 4, 5, 6 of
/// C.4.5.3 "Bumping" process.
pub fn needs_bumping(&self, to_insert: &PictureData) -> bool {
// In C.4.5.3 we handle clauses 2 and 3 separately. All other clauses
// check for an empty frame buffer first. Here we handle:
// - There is no empty frame buffer and a empty frame buffer is
// needed for storage of an inferred "non-existing" frame.
//
// - There is no empty frame buffer and an empty frame buffer is
// needed for storage of a decoded (non-IDR) reference picture.
//
// - There is no empty frame buffer and the current picture is a non-
// reference picture that is not the second field of a complementary
// non-reference field pair and there are pictures in the DPB that
// are marked as "needed for output" that precede the current
// non-reference picture in output order.
//
// Clauses 2 and 3 are handled by H264Codec::handle_picture and
// H264Codec::finish_picture, respectively.
if self.has_empty_frame_buffer() {
return false;
}
if to_insert.nonexisting {
return true;
}
let is_ref = !matches!(to_insert.reference(), Reference::None);
let non_idr_ref = is_ref && matches!(to_insert.is_idr, IsIdr::No);
if non_idr_ref {
return true;
}
let lowest_poc = match self.find_lowest_poc_for_bumping() {
Some(handle) => handle.0.borrow().pic_order_cnt,
None => return false,
};
!to_insert.is_second_field_of_complementary_ref_pair()
&& to_insert.pic_order_cnt > lowest_poc
}
/// Find the lowest POC in the DPB that can be bumped.
fn find_lowest_poc_for_bumping(&self) -> Option<&DpbEntry<T>> {
let lowest = self
.pictures()
.filter(|pic| {
if !pic.needed_for_output {
return false;
}
let skip = !matches!(pic.field, Field::Frame)
&& (pic.other_field().is_none() || pic.is_second_field());
!skip
})
.min_by_key(|pic| pic.pic_order_cnt)?;
self.entries
.iter()
.find(|handle| handle.0.borrow().pic_order_cnt == lowest.pic_order_cnt)
}
/// Gets the position of `needle` in the DPB, if any.
fn get_position(&self, needle: &Rc<RefCell<PictureData>>) -> Option<usize> {
self.entries
.iter()
.position(|handle| Rc::ptr_eq(&handle.0, needle))
}
/// Bump the dpb, returning a picture as per the bumping process described in C.4.5.3.
/// Note that this picture will still be referenced by its pair, if any.
pub fn bump(&mut self, flush: bool) -> Option<DpbEntry<T>> {
let handle = self.find_lowest_poc_for_bumping()?.clone();
let mut pic = handle.0.borrow_mut();
debug!("Bumping picture {:#?} from the dpb", pic);
pic.needed_for_output = false;
if !pic.is_ref() || flush {
let index = self.get_position(&handle.0).unwrap();
log::debug!("removed picture {:#?} from dpb", pic);
self.entries.remove(index);
}
if pic.other_field().is_some() {
let other_field_rc = pic.other_field().unwrap();
let mut other_field = other_field_rc.borrow_mut();
other_field.needed_for_output = false;
if !other_field.is_ref() {
log::debug!("other_field: removed picture {:#?} from dpb", other_field);
let index = self.get_position(&other_field_rc).unwrap();
self.entries.remove(index);
}
}
drop(pic);
Some(handle)
}
/// Drains the DPB by continuously invoking the bumping process.
pub fn drain(&mut self) -> Vec<DpbEntry<T>> {
debug!("Draining the DPB.");
let mut pics = vec![];
while let Some(pic) = self.bump(true) {
pics.push(pic);
}
pics
}
/// Clears the DPB, dropping all the pictures.
pub fn clear(&mut self) {
debug!("Clearing the DPB");
let max_num_pics = self.max_num_pics;
let interlaced = self.interlaced;
*self = Default::default();
self.max_num_pics = max_num_pics;
self.interlaced = interlaced;
}
/// Gets a `Vec<ContainedPicture>` of short term refs into `out`
pub fn get_short_term_refs(&self, out: &mut Vec<DpbEntry<T>>) {
out.extend(
self.entries
.iter()
.filter(|&handle| matches!(handle.0.borrow().reference(), Reference::ShortTerm))
.cloned(),
)
}
/// Gets a `Vec<ContainedPicture>` of long term refs into `out`
pub fn get_long_term_refs(&self, out: &mut Vec<DpbEntry<T>>) {
out.extend(
self.entries
.iter()
.filter(|&handle| matches!(handle.0.borrow().reference(), Reference::LongTerm))
.cloned(),
)
}
pub fn update_pic_nums(
&mut self,
frame_num: i32,
max_frame_num: i32,
current_pic: &PictureData,
) {
for mut pic in self.pictures_mut() {
if !pic.is_ref() {
continue;
}
if *pic.reference() == Reference::LongTerm {
pic.long_term_pic_num = if current_pic.field == Field::Frame {
pic.long_term_frame_idx
} else if current_pic.field == pic.field {
2 * pic.long_term_frame_idx + 1
} else {
2 * pic.long_term_frame_idx
};
} else {
pic.frame_num_wrap = if pic.frame_num > frame_num {
pic.frame_num - max_frame_num
} else {
pic.frame_num
};
pic.pic_num = if current_pic.field == Field::Frame {
pic.frame_num_wrap
} else if pic.field == current_pic.field {
2 * pic.frame_num_wrap + 1
} else {
2 * pic.frame_num_wrap
};
}
}
}
/// Bumps the DPB if needed. DPB bumping is described on C.4.5.3.
pub fn bump_as_needed(&mut self, current_pic: &PictureData) -> Vec<DpbEntry<T>> {
let mut pics = vec![];
while self.needs_bumping(current_pic) && self.len() >= self.max_num_reorder_frames {
match self.bump(false) {
Some(pic) => pics.push(pic),
None => return pics,
}
}
pics
}
pub fn mmco_op_1(&self, pic: &PictureData, marking: usize) -> Result<(), MmcoError> {
let marking = &pic.ref_pic_marking.inner()[marking];
let pic_num_x =
pic.pic_num - (i32::try_from(marking.difference_of_pic_nums_minus1()).unwrap() + 1);
log::debug!("MMCO op 1 for pic_num_x {}", pic_num_x);
log::trace!("Dpb state before MMCO=1: {:#?}", self);
let to_mark = self
.find_short_term_with_pic_num(pic_num_x)
.ok_or(MmcoError::NoShortTermPic)?
.0;
to_mark
.borrow_mut()
.set_reference(Reference::None, matches!(pic.field, Field::Frame));
Ok(())
}
pub fn mmco_op_2(&self, pic: &PictureData, marking: usize) -> Result<(), MmcoError> {
let marking = &pic.ref_pic_marking.inner()[marking];
log::debug!(
"MMCO op 2 for long_term_pic_num {}",
marking.long_term_pic_num()
);
log::trace!("Dpb state before MMCO=2: {:#?}", self);
let to_mark = self
.find_long_term_with_long_term_pic_num(
i32::try_from(marking.long_term_pic_num()).unwrap(),
)
.ok_or(MmcoError::NoShortTermPic)?
.0;
to_mark
.borrow_mut()
.set_reference(Reference::None, matches!(pic.field, Field::Frame));
Ok(())
}
pub fn mmco_op_3(&self, pic: &PictureData, marking: usize) -> Result<(), MmcoError> {
let marking = &pic.ref_pic_marking.inner()[marking];
let pic_num_x =
pic.pic_num - (i32::try_from(marking.difference_of_pic_nums_minus1()).unwrap() + 1);
log::debug!("MMCO op 3 for pic_num_x {}", pic_num_x);
log::trace!("Dpb state before MMCO=3: {:#?}", self);
let to_mark_as_long = self
.find_short_term_with_pic_num(pic_num_x)
.ok_or(MmcoError::NoShortTermPic)?
.0;
if !matches!(to_mark_as_long.borrow().reference(), Reference::ShortTerm) {
return Err(MmcoError::ExpectedMarked);
}
if to_mark_as_long.borrow().nonexisting {
return Err(MmcoError::ExpectedExisting);
}
let long_term_frame_idx = i32::try_from(marking.long_term_frame_idx()).unwrap();
for handle in self.entries() {
let mut dpb_pic = handle.0.borrow_mut();
let long_already_assigned = matches!(dpb_pic.reference(), Reference::LongTerm)
&& dpb_pic.long_term_frame_idx == long_term_frame_idx;
if long_already_assigned {
let is_frame = matches!(dpb_pic.field, Field::Frame);
let is_complementary_field_pair = dpb_pic.other_field().is_some()
&& matches!(
dpb_pic.other_field().unwrap().borrow().reference(),
Reference::LongTerm
)
&& dpb_pic.other_field().unwrap().borrow().long_term_frame_idx
== long_term_frame_idx;
// When LongTermFrameIdx equal to
// long_term_frame_idx is already assigned to a
// long-term reference frame or a long-term
// complementary reference field pair, that frame or
// complementary field pair and both of its fields
// are marked as "unused for reference"
if is_frame || is_complementary_field_pair {
dpb_pic.set_reference(Reference::None, true);
break;
}
// When LongTermFrameIdx is already assigned to a
// reference field, and that reference field is not
// part of a complementary field pair that includes
// the picture specified by picNumX, that field is
// marked as "unused for reference".
let reference_field_is_not_part_of_pic_x = if dpb_pic.other_field().is_none() {
true
} else {
let fields_do_not_reference_each_other =
!Rc::ptr_eq(&dpb_pic.other_field().unwrap(), &to_mark_as_long)
&& (to_mark_as_long.borrow().other_field().is_none()
|| !Rc::ptr_eq(
&to_mark_as_long.borrow().other_field().unwrap(),
&handle.0,
));
fields_do_not_reference_each_other
};
if reference_field_is_not_part_of_pic_x {
dpb_pic.set_reference(Reference::None, false);
break;
}
}
}
let is_frame = matches!(pic.field, Field::Frame);
to_mark_as_long
.borrow_mut()
.set_reference(Reference::LongTerm, is_frame);
to_mark_as_long.borrow_mut().long_term_frame_idx = long_term_frame_idx;
if let Some(other_field) = to_mark_as_long.borrow().other_field() {
let mut other_field = other_field.borrow_mut();
if matches!(other_field.reference(), Reference::LongTerm) {
other_field.long_term_frame_idx = long_term_frame_idx;
log::debug!(
"Assigned long_term_frame_idx {} to other_field {:#?}",
long_term_frame_idx,
&other_field
);
}
}
Ok(())
}
/// Returns the new `max_long_term_frame_idx`.
pub fn mmco_op_4(&mut self, pic: &PictureData, marking: usize) -> i32 {
let marking = &pic.ref_pic_marking.inner()[marking];
let max_long_term_frame_idx = marking.max_long_term_frame_idx_plus1() - 1;
log::debug!(
"MMCO op 4, max_long_term_frame_idx: {}",
max_long_term_frame_idx
);
log::trace!("Dpb state before MMCO=4: {:#?}", self);
for mut dpb_pic in self.pictures_mut() {
if matches!(dpb_pic.reference(), Reference::LongTerm)
&& dpb_pic.long_term_frame_idx > max_long_term_frame_idx
{
dpb_pic.set_reference(Reference::None, false);
}
}
max_long_term_frame_idx
}
/// Returns the new `max_long_term_frame_idx`.
pub fn mmco_op_5(&mut self, pic: &mut PictureData) -> i32 {
log::debug!("MMCO op 5, marking all pictures in the DPB as unused for reference");
log::trace!("Dpb state before MMCO=5: {:#?}", self);
self.mark_all_as_unused_for_ref();
pic.has_mmco_5 = true;
// A picture including a memory_management_control_operation equal to 5
// shall have frame_num constraints as described above and, after the
// decoding of the current picture and the processing of the memory
// management control operations, the picture shall be inferred to have
// had frame_num equal to 0 for all subsequent use in the decoding
// process, except as specified in clause 7.4.1.2.4.
pic.frame_num = 0;
// When the current picture includes a
// memory_management_control_operation equal to 5, after the decoding of
// the current picture, tempPicOrderCnt is set equal to PicOrderCnt(
// CurrPic ), TopFieldOrderCnt of the current picture (if any) is set
// equal to TopFieldOrderCnt − tempPicOrderCnt, and BottomFieldOrderCnt
// of the current picture (if any) is set equal to BottomFieldOrderCnt −
// tempPicOrderCnt
match pic.field {
Field::Top => {
pic.top_field_order_cnt = 0;
pic.pic_order_cnt = 0;
}
Field::Bottom => {
pic.bottom_field_order_cnt = 0;
pic.pic_order_cnt = 0;
}
Field::Frame => {
pic.top_field_order_cnt -= pic.pic_order_cnt;
pic.bottom_field_order_cnt -= pic.pic_order_cnt;
pic.pic_order_cnt =
std::cmp::min(pic.top_field_order_cnt, pic.bottom_field_order_cnt);
}
}
-1
}
pub fn mmco_op_6(&mut self, pic: &mut PictureData, marking: usize) {
let marking = &pic.ref_pic_marking.inner()[marking];
let long_term_frame_idx = i32::try_from(marking.long_term_frame_idx()).unwrap();
log::debug!("MMCO op 6, long_term_frame_idx: {}", long_term_frame_idx);
log::trace!("Dpb state before MMCO=6: {:#?}", self);
for mut dpb_pic in self.pictures_mut() {
// When a variable LongTermFrameIdx equal to long_term_frame_idx is
// already assigned to a long-term reference frame or a long-term
// complementary reference field pair, that frame or complementary
// field pair and both of its fields are marked as "unused for
// reference". When LongTermFrameIdx is already assigned to a
// reference field, and that reference field is not part of a
// complementary field pair that includes the current picture, that
// field is marked as "unused for reference".
if matches!(dpb_pic.reference(), Reference::LongTerm)
&& dpb_pic.long_term_frame_idx == long_term_frame_idx
{
let is_frame = matches!(dpb_pic.field, Field::Frame);
let is_complementary_ref_field_pair = dpb_pic.other_field().is_some()
&& matches!(
dpb_pic.other_field().unwrap().borrow().reference(),
Reference::LongTerm
)
&& dpb_pic.other_field().unwrap().borrow().long_term_frame_idx
== long_term_frame_idx;
dpb_pic.set_reference(Reference::None, is_frame || is_complementary_ref_field_pair);
break;
}
}
let is_frame = matches!(pic.field, Field::Frame);
let is_second_ref_field = pic.is_second_field()
&& matches!(
pic.other_field().unwrap().borrow().reference(),
Reference::LongTerm
);
pic.set_reference(Reference::LongTerm, is_frame || is_second_ref_field);
pic.long_term_frame_idx = long_term_frame_idx;
if is_second_ref_field {
pic.other_field().unwrap().borrow_mut().long_term_frame_idx = long_term_frame_idx;
}
}
}
impl<T: Clone> Default for Dpb<T> {
fn default() -> Self {
// See https://github.com/rust-lang/rust/issues/26925 on why this can't
// be derived.
Self {
entries: Default::default(),
max_num_pics: Default::default(),
max_num_reorder_frames: Default::default(),
interlaced: Default::default(),
}
}
}
impl<T: Clone> std::fmt::Debug for Dpb<T> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let pics = self
.entries
.iter()
.map(|h| &h.0)
.enumerate()
.collect::<Vec<_>>();
f.debug_struct("Dpb")
.field("pictures", &pics)
.field("max_num_pics", &self.max_num_pics)
.field("interlaced", &self.interlaced)
.finish()
}
}