pub struct Pps {Show 14 fields
pub pps_id: u32,
pub sps_id: u32,
pub entropy_coding_mode_flag: bool,
pub num_slice_groups: u32,
pub slice_group_map_type: u32,
pub run_length_minus1: Vec<u32>,
pub top_left: Vec<u32>,
pub bottom_right: Vec<u32>,
pub slice_group_change_direction_flag: bool,
pub slice_group_change_rate: u32,
pub slice_group_id: Vec<u32>,
pub num_ref_idx_l0_default_active: u32,
pub num_ref_idx_l1_default_active: u32,
pub pic_init_qp: i32,
}Expand description
Parsed Picture Parameter Set (subset).
Fields§
§pps_id: u32§sps_id: u32§entropy_coding_mode_flag: bool§num_slice_groups: u32§slice_group_map_type: u32§run_length_minus1: Vec<u32>Run-length values for FMO type 0 (interleaved).
top_left: Vec<u32>Top-left MB indices for FMO type 2 (foreground regions).
bottom_right: Vec<u32>Bottom-right MB indices for FMO type 2 (foreground regions).
slice_group_change_direction_flag: boolFor FMO types 3–5: direction of changing slice groups.
slice_group_change_rate: u32For FMO types 3–5: rate of change in MBs.
slice_group_id: Vec<u32>Explicit MB-to-slice-group map for FMO type 6.
num_ref_idx_l0_default_active: u32§num_ref_idx_l1_default_active: u32§pic_init_qp: i32Trait Implementations§
Auto Trait Implementations§
impl Freeze for Pps
impl RefUnwindSafe for Pps
impl Send for Pps
impl Sync for Pps
impl Unpin for Pps
impl UnsafeUnpin for Pps
impl UnwindSafe for Pps
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more