#[repr(C)]
pub struct StdVideoDecodeAV1PictureInfo {
Show 24 fields pub flags: StdVideoDecodeAV1PictureInfoFlags, pub frame_type: StdVideoAV1FrameType, pub current_frame_id: u32, pub OrderHint: u8, pub primary_ref_frame: u8, pub refresh_frame_flags: u8, pub reserved1: u8, pub interpolation_filter: StdVideoAV1InterpolationFilter, pub TxMode: StdVideoAV1TxMode, pub delta_q_res: u8, pub delta_lf_res: u8, pub SkipModeFrame: [u8; 2], pub coded_denom: u8, pub reserved2: [u8; 3], pub OrderHints: [u8; 8], pub expectedFrameId: [u32; 8], pub pTileInfo: *const StdVideoAV1TileInfo, pub pQuantization: *const StdVideoAV1Quantization, pub pSegmentation: *const StdVideoAV1Segmentation, pub pLoopFilter: *const StdVideoAV1LoopFilter, pub pCDEF: *const StdVideoAV1CDEF, pub pLoopRestoration: *const StdVideoAV1LoopRestoration, pub pGlobalMotion: *const StdVideoAV1GlobalMotion, pub pFilmGrain: *const StdVideoAV1FilmGrain,
}

Fields§

§flags: StdVideoDecodeAV1PictureInfoFlags§frame_type: StdVideoAV1FrameType§current_frame_id: u32§OrderHint: u8§primary_ref_frame: u8§refresh_frame_flags: u8§reserved1: u8§interpolation_filter: StdVideoAV1InterpolationFilter§TxMode: StdVideoAV1TxMode§delta_q_res: u8§delta_lf_res: u8§SkipModeFrame: [u8; 2]§coded_denom: u8§reserved2: [u8; 3]§OrderHints: [u8; 8]§expectedFrameId: [u32; 8]§pTileInfo: *const StdVideoAV1TileInfo§pQuantization: *const StdVideoAV1Quantization§pSegmentation: *const StdVideoAV1Segmentation§pLoopFilter: *const StdVideoAV1LoopFilter§pCDEF: *const StdVideoAV1CDEF§pLoopRestoration: *const StdVideoAV1LoopRestoration§pGlobalMotion: *const StdVideoAV1GlobalMotion§pFilmGrain: *const StdVideoAV1FilmGrain

Trait Implementations§

source§

impl Clone for StdVideoDecodeAV1PictureInfo

source§

fn clone(&self) -> StdVideoDecodeAV1PictureInfo

Returns a copy 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 StdVideoDecodeAV1PictureInfo

source§

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

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

impl Copy for StdVideoDecodeAV1PictureInfo

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> 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,

§

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>,

§

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>,

§

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.