Skip to main content

StdVideoDecodeAV1PictureInfoFlags

Struct StdVideoDecodeAV1PictureInfoFlags 

Source
pub struct StdVideoDecodeAV1PictureInfoFlags { /* private fields */ }
Expand description

struct StdVideoDecodeAV1PictureInfoFlags from vulkan_video_codec_av1std_decode

Implementations§

Source§

impl StdVideoDecodeAV1PictureInfoFlags

Source

pub fn get_error_resilient_mode(&self) -> u32

Source

pub fn set_error_resilient_mode(&mut self, value: u32)

Source

pub fn get_disable_cdf_update(&self) -> u32

Source

pub fn set_disable_cdf_update(&mut self, value: u32)

Source

pub fn get_use_superres(&self) -> u32

Source

pub fn set_use_superres(&mut self, value: u32)

Source

pub fn get_render_and_frame_size_different(&self) -> u32

Source

pub fn set_render_and_frame_size_different(&mut self, value: u32)

Source

pub fn get_allow_screen_content_tools(&self) -> u32

Source

pub fn set_allow_screen_content_tools(&mut self, value: u32)

Source

pub fn get_is_filter_switchable(&self) -> u32

Source

pub fn set_is_filter_switchable(&mut self, value: u32)

Source

pub fn get_force_integer_mv(&self) -> u32

Source

pub fn set_force_integer_mv(&mut self, value: u32)

Source

pub fn get_frame_size_override_flag(&self) -> u32

Source

pub fn set_frame_size_override_flag(&mut self, value: u32)

Source

pub fn get_buffer_removal_time_present_flag(&self) -> u32

Source

pub fn set_buffer_removal_time_present_flag(&mut self, value: u32)

Source

pub fn get_allow_intrabc(&self) -> u32

Source

pub fn set_allow_intrabc(&mut self, value: u32)

Source

pub fn get_frame_refs_short_signaling(&self) -> u32

Source

pub fn set_frame_refs_short_signaling(&mut self, value: u32)

Source

pub fn get_allow_high_precision_mv(&self) -> u32

Source

pub fn set_allow_high_precision_mv(&mut self, value: u32)

Source

pub fn get_is_motion_mode_switchable(&self) -> u32

Source

pub fn set_is_motion_mode_switchable(&mut self, value: u32)

Source

pub fn get_use_ref_frame_mvs(&self) -> u32

Source

pub fn set_use_ref_frame_mvs(&mut self, value: u32)

Source

pub fn get_disable_frame_end_update_cdf(&self) -> u32

Source

pub fn set_disable_frame_end_update_cdf(&mut self, value: u32)

Source

pub fn get_allow_warped_motion(&self) -> u32

Source

pub fn set_allow_warped_motion(&mut self, value: u32)

Source

pub fn get_reduced_tx_set(&self) -> u32

Source

pub fn set_reduced_tx_set(&mut self, value: u32)

Source

pub fn get_reference_select(&self) -> u32

Source

pub fn set_reference_select(&mut self, value: u32)

Source

pub fn get_skip_mode_present(&self) -> u32

Source

pub fn set_skip_mode_present(&mut self, value: u32)

Source

pub fn get_delta_q_present(&self) -> u32

Source

pub fn set_delta_q_present(&mut self, value: u32)

Source

pub fn get_delta_lf_present(&self) -> u32

Source

pub fn set_delta_lf_present(&mut self, value: u32)

Source

pub fn get_delta_lf_multi(&self) -> u32

Source

pub fn set_delta_lf_multi(&mut self, value: u32)

Source

pub fn get_segmentation_enabled(&self) -> u32

Source

pub fn set_segmentation_enabled(&mut self, value: u32)

Source

pub fn get_segmentation_update_map(&self) -> u32

Source

pub fn set_segmentation_update_map(&mut self, value: u32)

Source

pub fn get_segmentation_temporal_update(&self) -> u32

Source

pub fn set_segmentation_temporal_update(&mut self, value: u32)

Source

pub fn get_segmentation_update_data(&self) -> u32

Source

pub fn set_segmentation_update_data(&mut self, value: u32)

Source

pub fn get_UsesLr(&self) -> u32

Source

pub fn set_UsesLr(&mut self, value: u32)

Source

pub fn get_usesChromaLr(&self) -> u32

Source

pub fn set_usesChromaLr(&mut self, value: u32)

Source

pub fn get_apply_grain(&self) -> u32

Source

pub fn set_apply_grain(&mut self, value: u32)

Source

pub fn get_reserved(&self) -> u32

Source

pub fn set_reserved(&mut self, value: u32)

Trait Implementations§

Source§

impl Clone for StdVideoDecodeAV1PictureInfoFlags

Source§

fn clone(&self) -> StdVideoDecodeAV1PictureInfoFlags

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 StdVideoDecodeAV1PictureInfoFlags

Source§

impl Debug for StdVideoDecodeAV1PictureInfoFlags

Source§

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

Formats the value using the given formatter. Read more

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.