#[repr(C)]pub struct _VAIQMatrixBufferMPEG2 {
pub load_intra_quantiser_matrix: i32,
pub load_non_intra_quantiser_matrix: i32,
pub load_chroma_intra_quantiser_matrix: i32,
pub load_chroma_non_intra_quantiser_matrix: i32,
pub intra_quantiser_matrix: [u8; 64],
pub non_intra_quantiser_matrix: [u8; 64],
pub chroma_intra_quantiser_matrix: [u8; 64],
pub chroma_non_intra_quantiser_matrix: [u8; 64],
pub va_reserved: [u32; 4],
}Expand description
MPEG-2 Inverse Quantization Matrix Buffer
Fields§
§load_intra_quantiser_matrix: i32\brief Same as the MPEG-2 bitstream syntax element.
load_non_intra_quantiser_matrix: i32\brief Same as the MPEG-2 bitstream syntax element.
load_chroma_intra_quantiser_matrix: i32\brief Same as the MPEG-2 bitstream syntax element.
load_chroma_non_intra_quantiser_matrix: i32\brief Same as the MPEG-2 bitstream syntax element.
intra_quantiser_matrix: [u8; 64]\brief Luminance intra matrix, in zig-zag scan order.
non_intra_quantiser_matrix: [u8; 64]\brief Luminance non-intra matrix, in zig-zag scan order.
chroma_intra_quantiser_matrix: [u8; 64]\brief Chroma intra matrix, in zig-zag scan order.
chroma_non_intra_quantiser_matrix: [u8; 64]\brief Chroma non-intra matrix, in zig-zag scan order.
va_reserved: [u32; 4]\brief Reserved bytes for future use, must be zero
Trait Implementations§
Source§impl Clone for _VAIQMatrixBufferMPEG2
impl Clone for _VAIQMatrixBufferMPEG2
Source§fn clone(&self) -> _VAIQMatrixBufferMPEG2
fn clone(&self) -> _VAIQMatrixBufferMPEG2
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for _VAIQMatrixBufferMPEG2
Source§impl Debug for _VAIQMatrixBufferMPEG2
impl Debug for _VAIQMatrixBufferMPEG2
Source§impl Default for _VAIQMatrixBufferMPEG2
impl Default for _VAIQMatrixBufferMPEG2
impl Eq for _VAIQMatrixBufferMPEG2
Source§impl PartialEq for _VAIQMatrixBufferMPEG2
impl PartialEq for _VAIQMatrixBufferMPEG2
Source§fn eq(&self, other: &_VAIQMatrixBufferMPEG2) -> bool
fn eq(&self, other: &_VAIQMatrixBufferMPEG2) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for _VAIQMatrixBufferMPEG2
Auto Trait Implementations§
impl Freeze for _VAIQMatrixBufferMPEG2
impl RefUnwindSafe for _VAIQMatrixBufferMPEG2
impl Send for _VAIQMatrixBufferMPEG2
impl Sync for _VAIQMatrixBufferMPEG2
impl Unpin for _VAIQMatrixBufferMPEG2
impl UnsafeUnpin for _VAIQMatrixBufferMPEG2
impl UnwindSafe for _VAIQMatrixBufferMPEG2
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more