pub struct LongTermRefPics {
pub lt_ref_pic_poc_lsb_sps: Vec<u64>,
pub used_by_curr_pic_lt_sps_flag: Vec<bool>,
}
Expand description
Directly part of SPS RBSP.
Fields§
§lt_ref_pic_poc_lsb_sps: Vec<u64>
Specifies the picture order count modulo MaxPicOrderCntLsb
of the i
-th
candidate long-term reference picture specified in the SPS.
used_by_curr_pic_lt_sps_flag: Vec<bool>
Equal to false
specifies that the i
-th candidate long-term reference picture
specified in the SPS is not used for reference by a picture that includes in its long-term RPS the i
-th
candidate long-term reference picture specified in the SPS.
Trait Implementations§
Source§impl Clone for LongTermRefPics
impl Clone for LongTermRefPics
Source§fn clone(&self) -> LongTermRefPics
fn clone(&self) -> LongTermRefPics
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LongTermRefPics
impl Debug for LongTermRefPics
Source§impl PartialEq for LongTermRefPics
impl PartialEq for LongTermRefPics
impl StructuralPartialEq for LongTermRefPics
Auto Trait Implementations§
impl Freeze for LongTermRefPics
impl RefUnwindSafe for LongTermRefPics
impl Send for LongTermRefPics
impl Sync for LongTermRefPics
impl Unpin for LongTermRefPics
impl UnwindSafe for LongTermRefPics
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more