h264_pps

Struct h264_pps 

Source
#[repr(C)]
pub struct h264_pps {
Show 28 fields pub pic_parameter_set_id: u32, pub seq_parameter_set_id: u32, pub entropy_coding_mode_flag: c_int, pub bottom_field_pic_order_in_frame_present_flag: c_int, pub num_slice_groups_minus1: u32, pub slice_group_map_type: u32, pub run_length_minus1: [u32; 8], pub top_left: [u32; 8], pub bottom_right: [u32; 8], pub slice_group_change_direction_flag: c_int, pub slice_group_change_rate_minus1: u32, pub pic_size_in_map_units_minus1: u32, pub slice_group_id: [u32; 256], pub num_ref_idx_l0_default_active_minus1: u32, pub num_ref_idx_l1_default_active_minus1: u32, pub weighted_pred_flag: c_int, pub weighted_bipred_idc: u32, pub pic_init_qp_minus26: i32, pub pic_init_qs_minus26: i32, pub chroma_qp_index_offset: i32, pub deblocking_filter_control_present_flag: c_int, pub constrained_intra_pred_flag: c_int, pub redundant_pic_cnt_present_flag: c_int, pub _more_rbsp_data_present: c_int, pub transform_8x8_mode_flag: c_int, pub pic_scaling_matrix_present_flag: c_int, pub pic_scaling_matrix: h264_scaling_matrix, pub second_chroma_qp_index_offset: i32,
}
Expand description

7.3.2.2 Picture parameter set RBSP syntax

Fields§

§pic_parameter_set_id: u32§seq_parameter_set_id: u32§entropy_coding_mode_flag: c_int§bottom_field_pic_order_in_frame_present_flag: c_int§num_slice_groups_minus1: u32§slice_group_map_type: u32§run_length_minus1: [u32; 8]§top_left: [u32; 8]§bottom_right: [u32; 8]§slice_group_change_direction_flag: c_int§slice_group_change_rate_minus1: u32§pic_size_in_map_units_minus1: u32§slice_group_id: [u32; 256]§num_ref_idx_l0_default_active_minus1: u32§num_ref_idx_l1_default_active_minus1: u32§weighted_pred_flag: c_int§weighted_bipred_idc: u32§pic_init_qp_minus26: i32§pic_init_qs_minus26: i32§chroma_qp_index_offset: i32§deblocking_filter_control_present_flag: c_int§constrained_intra_pred_flag: c_int§redundant_pic_cnt_present_flag: c_int§_more_rbsp_data_present: c_int§transform_8x8_mode_flag: c_int§pic_scaling_matrix_present_flag: c_int§pic_scaling_matrix: h264_scaling_matrix§second_chroma_qp_index_offset: i32

Trait Implementations§

Source§

impl Clone for h264_pps

Source§

fn clone(&self) -> h264_pps

Returns a duplicate of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for h264_pps

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Copy for h264_pps

Auto Trait Implementations§

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.