pub struct Pps { /* private fields */ }
Expand description
A H264 Picture Parameter Set. A syntax structure containing syntax elements
that apply to zero or more entire coded pictures as determined by the
pic_parameter_set_id
syntax element found in each slice header.
Implementations§
source§impl Pps
impl Pps
pub fn pic_parameter_set_id(&self) -> u8
pub fn seq_parameter_set_id(&self) -> u8
pub fn entropy_coding_mode_flag(&self) -> bool
pub fn bottom_field_pic_order_in_frame_present_flag(&self) -> bool
pub fn num_slice_groups_minus1(&self) -> u32
pub fn num_ref_idx_l0_default_active_minus1(&self) -> u8
pub fn num_ref_idx_l1_default_active_minus1(&self) -> u8
pub fn weighted_pred_flag(&self) -> bool
pub fn weighted_bipred_idc(&self) -> u8
pub fn pic_init_qp_minus26(&self) -> i8
pub fn pic_init_qs_minus26(&self) -> i8
pub fn chroma_qp_index_offset(&self) -> i8
pub fn deblocking_filter_control_present_flag(&self) -> bool
pub fn constrained_intra_pred_flag(&self) -> bool
pub fn redundant_pic_cnt_present_flag(&self) -> bool
pub fn transform_8x8_mode_flag(&self) -> bool
pub fn pic_scaling_matrix_present_flag(&self) -> bool
pub fn scaling_lists_4x4(&self) -> [[u8; 16]; 6]
pub fn scaling_lists_8x8(&self) -> [[u8; 64]; 6]
pub fn second_chroma_qp_index_offset(&self) -> i8
Trait Implementations§
impl Eq for Pps
impl StructuralEq for Pps
impl StructuralPartialEq for Pps
Auto Trait Implementations§
impl RefUnwindSafe for Pps
impl Send for Pps
impl Sync for Pps
impl Unpin 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