Skip to main content

H265PpsInfo

Struct H265PpsInfo 

Source
pub struct H265PpsInfo {
Show 37 fields pub pps_pic_parameter_set_id: u8, pub pps_seq_parameter_set_id: u8, pub dependent_slice_segments_enabled_flag: bool, pub output_flag_present_flag: bool, pub num_extra_slice_header_bits: u8, pub sign_data_hiding_enabled_flag: bool, pub cabac_init_present_flag: bool, pub num_ref_idx_l0_default_active_minus1: u8, pub num_ref_idx_l1_default_active_minus1: u8, pub init_qp_minus26: i8, pub constrained_intra_pred_flag: bool, pub transform_skip_enabled_flag: bool, pub cu_qp_delta_enabled_flag: bool, pub diff_cu_qp_delta_depth: u8, pub pps_cb_qp_offset: i8, pub pps_cr_qp_offset: i8, pub pps_slice_chroma_qp_offsets_present_flag: bool, pub weighted_pred_flag: bool, pub weighted_bipred_flag: bool, pub transquant_bypass_enabled_flag: bool, pub tiles_enabled_flag: bool, pub entropy_coding_sync_enabled_flag: bool, pub num_tile_columns_minus1: u8, pub num_tile_rows_minus1: u8, pub uniform_spacing_flag: bool, pub loop_filter_across_tiles_enabled_flag: bool, pub pps_loop_filter_across_slices_enabled_flag: bool, pub deblocking_filter_control_present_flag: bool, pub deblocking_filter_override_enabled_flag: bool, pub pps_deblocking_filter_disabled_flag: bool, pub pps_beta_offset_div2: i8, pub pps_tc_offset_div2: i8, pub pps_scaling_list_data_present_flag: bool, pub lists_modification_present_flag: bool, pub log2_parallel_merge_level_minus2: u8, pub slice_segment_header_extension_present_flag: bool, pub pps_extension_present_flag: bool,
}
Expand description

Parsed HEVC PPS.

Fields§

§pps_pic_parameter_set_id: u8§pps_seq_parameter_set_id: u8§dependent_slice_segments_enabled_flag: bool§output_flag_present_flag: bool§num_extra_slice_header_bits: u8§sign_data_hiding_enabled_flag: bool§cabac_init_present_flag: bool§num_ref_idx_l0_default_active_minus1: u8§num_ref_idx_l1_default_active_minus1: u8§init_qp_minus26: i8§constrained_intra_pred_flag: bool§transform_skip_enabled_flag: bool§cu_qp_delta_enabled_flag: bool§diff_cu_qp_delta_depth: u8§pps_cb_qp_offset: i8§pps_cr_qp_offset: i8§pps_slice_chroma_qp_offsets_present_flag: bool§weighted_pred_flag: bool§weighted_bipred_flag: bool§transquant_bypass_enabled_flag: bool§tiles_enabled_flag: bool§entropy_coding_sync_enabled_flag: bool§num_tile_columns_minus1: u8§num_tile_rows_minus1: u8§uniform_spacing_flag: bool§loop_filter_across_tiles_enabled_flag: bool§pps_loop_filter_across_slices_enabled_flag: bool§deblocking_filter_control_present_flag: bool§deblocking_filter_override_enabled_flag: bool§pps_deblocking_filter_disabled_flag: bool§pps_beta_offset_div2: i8§pps_tc_offset_div2: i8§pps_scaling_list_data_present_flag: bool§lists_modification_present_flag: bool§log2_parallel_merge_level_minus2: u8§slice_segment_header_extension_present_flag: bool§pps_extension_present_flag: bool

Trait Implementations§

Source§

impl Clone for H265PpsInfo

Source§

fn clone(&self) -> H265PpsInfo

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 Copy for H265PpsInfo

Source§

impl Debug for H265PpsInfo

Source§

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

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

impl Eq for H265PpsInfo

Source§

impl PartialEq for H265PpsInfo

Source§

fn eq(&self, other: &H265PpsInfo) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for H265PpsInfo

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> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more