h265_vui

Struct h265_vui 

Source
#[repr(C)]
pub struct h265_vui {
Show 40 fields pub aspect_ratio_info_present_flag: c_int, pub aspect_ratio_idc: u32, pub sar_width: u32, pub sar_height: u32, pub overscan_info_present_flag: c_int, pub overscan_appropriate_flag: c_int, pub video_signal_type_present_flag: c_int, pub video_format: u32, pub video_full_range_flag: c_int, pub colour_description_present_flag: c_int, pub colour_primaries: u32, pub transfer_characteristics: u32, pub matrix_coeffs: u32, pub chroma_loc_info_present_flag: c_int, pub chroma_sample_loc_type_top_field: u32, pub chroma_sample_loc_type_bottom_field: u32, pub neutral_chroma_indication_flag: c_int, pub field_seq_flag: c_int, pub frame_field_info_present_flag: c_int, pub default_display_window_flag: c_int, pub def_disp_win_left_offset: u32, pub def_disp_win_right_offset: u32, pub def_disp_win_top_offset: u32, pub def_disp_win_bottom_offset: u32, pub vui_timing_info_present_flag: c_int, pub vui_num_units_in_tick: u32, pub vui_time_scale: u32, pub vui_poc_proportional_to_timing_flag: c_int, pub vui_num_ticks_poc_diff_one_minus1: u32, pub vui_hrd_parameters_present_flag: c_int, pub hrd: h265_hrd, pub bitstream_restriction_flag: c_int, pub tiles_fixed_structure_flag: c_int, pub motion_vectors_over_pic_boundaries_flag: c_int, pub restricted_ref_pic_lists_flag: c_int, pub min_spatial_segmentation_idc: u32, pub max_bytes_per_pic_denom: u32, pub max_bits_per_min_cu_denom: u32, pub log2_max_mv_length_horizontal: u32, pub log2_max_mv_length_vertical: u32,
}
Expand description

E.2.1 VUI parameters syntax.

Fields§

§aspect_ratio_info_present_flag: c_int§aspect_ratio_idc: u32§sar_width: u32§sar_height: u32§overscan_info_present_flag: c_int§overscan_appropriate_flag: c_int§video_signal_type_present_flag: c_int§video_format: u32§video_full_range_flag: c_int§colour_description_present_flag: c_int§colour_primaries: u32§transfer_characteristics: u32§matrix_coeffs: u32§chroma_loc_info_present_flag: c_int§chroma_sample_loc_type_top_field: u32§chroma_sample_loc_type_bottom_field: u32§neutral_chroma_indication_flag: c_int§field_seq_flag: c_int§frame_field_info_present_flag: c_int§default_display_window_flag: c_int§def_disp_win_left_offset: u32§def_disp_win_right_offset: u32§def_disp_win_top_offset: u32§def_disp_win_bottom_offset: u32§vui_timing_info_present_flag: c_int§vui_num_units_in_tick: u32§vui_time_scale: u32§vui_poc_proportional_to_timing_flag: c_int§vui_num_ticks_poc_diff_one_minus1: u32§vui_hrd_parameters_present_flag: c_int§hrd: h265_hrd§bitstream_restriction_flag: c_int§tiles_fixed_structure_flag: c_int§motion_vectors_over_pic_boundaries_flag: c_int§restricted_ref_pic_lists_flag: c_int§min_spatial_segmentation_idc: u32§max_bytes_per_pic_denom: u32§max_bits_per_min_cu_denom: u32§log2_max_mv_length_horizontal: u32§log2_max_mv_length_vertical: u32

Trait Implementations§

Source§

impl Clone for h265_vui

Source§

fn clone(&self) -> h265_vui

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 h265_vui

Source§

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

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

impl Copy for h265_vui

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.