#[repr(C)]pub struct _VAQMatrixBufferVP8 {
pub quantization_index: [u16; 4],
pub quantization_index_delta: [i16; 5],
pub va_reserved: [u32; 4],
}Expand description
\brief VP8 Quantization Matrix Buffer Structure
Contains quantization index for yac(0-3) for each segment and quantization index deltas, ydc(0), y2dc(1), y2ac(2), uvdc(3), uvac(4) that are applied to all segments. When segmentation is disabled, only quantization_index[0] will be used. This structure is sent once per frame.
Fields§
§quantization_index: [u16; 4]§quantization_index_delta: [i16; 5]§va_reserved: [u32; 4]\brief Reserved bytes for future use, must be zero
Trait Implementations§
Source§impl Clone for _VAQMatrixBufferVP8
impl Clone for _VAQMatrixBufferVP8
Source§fn clone(&self) -> _VAQMatrixBufferVP8
fn clone(&self) -> _VAQMatrixBufferVP8
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 _VAQMatrixBufferVP8
Source§impl Debug for _VAQMatrixBufferVP8
impl Debug for _VAQMatrixBufferVP8
Source§impl Default for _VAQMatrixBufferVP8
impl Default for _VAQMatrixBufferVP8
Source§fn default() -> _VAQMatrixBufferVP8
fn default() -> _VAQMatrixBufferVP8
Returns the “default value” for a type. Read more
impl Eq for _VAQMatrixBufferVP8
Source§impl PartialEq for _VAQMatrixBufferVP8
impl PartialEq for _VAQMatrixBufferVP8
Source§fn eq(&self, other: &_VAQMatrixBufferVP8) -> bool
fn eq(&self, other: &_VAQMatrixBufferVP8) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for _VAQMatrixBufferVP8
Auto Trait Implementations§
impl Freeze for _VAQMatrixBufferVP8
impl RefUnwindSafe for _VAQMatrixBufferVP8
impl Send for _VAQMatrixBufferVP8
impl Sync for _VAQMatrixBufferVP8
impl Unpin for _VAQMatrixBufferVP8
impl UnsafeUnpin for _VAQMatrixBufferVP8
impl UnwindSafe for _VAQMatrixBufferVP8
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