Skip to main content

Pps

Struct Pps 

Source
pub struct Pps {
Show 20 fields pub pic_parameter_set_id: u32, pub seq_parameter_set_id: u32, pub entropy_coding_mode_flag: bool, pub bottom_field_pic_order_present: bool, pub num_ref_idx_l0_default: u32, pub num_ref_idx_l1_default: u32, pub weighted_pred: bool, pub weighted_bipred_idc: u8, pub pic_init_qp: i32, pub chroma_qp_index_offset: i32, pub deblocking_filter_control_present_flag: bool, pub constrained_intra_pred_flag: bool, pub redundant_pic_cnt_present_flag: bool, pub transform_8x8_mode_flag: bool, pub second_chroma_qp_index_offset: i32, pub pic_scaling_matrix_present: bool, pub scaling_4x4: [[u8; 16]; 6], pub scaling_8x8: [[u8; 64]; 2], pub scaling_present_4x4: [bool; 6], pub scaling_present_8x8: [bool; 2],
}
Expand description

Parsed picture parameter set fields the decoder needs.

Fields§

§pic_parameter_set_id: u32§seq_parameter_set_id: u32§entropy_coding_mode_flag: bool§bottom_field_pic_order_present: bool

bottom_field_pic_order_in_frame_present_flag (a.k.a. pic_order_present): when set, slice headers carry an extra delta_pic_order_cnt value.

§num_ref_idx_l0_default: u32§num_ref_idx_l1_default: u32§weighted_pred: bool§weighted_bipred_idc: u8§pic_init_qp: i32§chroma_qp_index_offset: i32

Signed offset applied when mapping luma QP to chroma QP (§8.5.8).

§deblocking_filter_control_present_flag: bool§constrained_intra_pred_flag: bool§redundant_pic_cnt_present_flag: bool§transform_8x8_mode_flag: bool

transform_8x8_mode_flag (High PPS extension): when set, macroblocks may signal transform_size_8x8_flag to use the 8×8 transform.

§second_chroma_qp_index_offset: i32

second_chroma_qp_index_offset (High PPS extension) — the Cr QP offset; defaults to chroma_qp_index_offset (the Cb offset) when absent.

§pic_scaling_matrix_present: bool

pic_scaling_matrix_present_flag: per-picture scaling lists overriding the SPS ones (fall-back rule B). When false the SPS lists apply.

§scaling_4x4: [[u8; 16]; 6]

Parsed PPS scaling lists (zig-zag order) and per-list present flags. Only meaningful when pic_scaling_matrix_present; absent lists resolve against the SPS at slice time.

§scaling_8x8: [[u8; 64]; 2]§scaling_present_4x4: [bool; 6]§scaling_present_8x8: [bool; 2]

Implementations§

Source§

impl Pps

Source

pub fn parse(rbsp: &[u8]) -> Result<Self, DecodeError>

Parses a PPS RBSP. Rejects FMO/slice-groups cleanly; never panics.

Trait Implementations§

Source§

impl Clone for Pps

Source§

fn clone(&self) -> Pps

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Pps

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.