#[repr(C)]pub struct _VAProcFilterCap3DLUT {
pub lut_size: u16,
pub lut_stride: [u16; 3],
pub bit_depth: u16,
pub num_channel: u16,
pub channel_mapping: u32,
pub va_reserved: [u32; 16],
}Expand description
\brief Capabilities specification for the 3DLUT filter.
Fields§
§lut_size: u16\brief lut_size is the number of valid points on every dimension of the three dimensional look up table.
lut_stride: [u16; 3]\brief lut_stride are the number of points on every dimension of the three dimensional look up table. lut3d[lut_stride[0]][lut_stride[1]][lut_stride[2]]
bit_depth: u16\brief bit_depth is the number of bits for every channel R, G or B (or Y, U, V)
num_channel: u16\brief num_channel is the number of channels
channel_mapping: u32\brief channel_mapping defines the mapping of channels, could be some combination of VA_3DLUT_CHANNEL_XXX
va_reserved: [u32; 16]\brief Reserved bytes for future use, must be zero
Trait Implementations§
Source§impl Clone for _VAProcFilterCap3DLUT
impl Clone for _VAProcFilterCap3DLUT
Source§fn clone(&self) -> _VAProcFilterCap3DLUT
fn clone(&self) -> _VAProcFilterCap3DLUT
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 _VAProcFilterCap3DLUT
Source§impl Debug for _VAProcFilterCap3DLUT
impl Debug for _VAProcFilterCap3DLUT
Source§impl Default for _VAProcFilterCap3DLUT
impl Default for _VAProcFilterCap3DLUT
Source§fn default() -> _VAProcFilterCap3DLUT
fn default() -> _VAProcFilterCap3DLUT
Returns the “default value” for a type. Read more
impl Eq for _VAProcFilterCap3DLUT
Source§impl PartialEq for _VAProcFilterCap3DLUT
impl PartialEq for _VAProcFilterCap3DLUT
Source§fn eq(&self, other: &_VAProcFilterCap3DLUT) -> bool
fn eq(&self, other: &_VAProcFilterCap3DLUT) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for _VAProcFilterCap3DLUT
Auto Trait Implementations§
impl Freeze for _VAProcFilterCap3DLUT
impl RefUnwindSafe for _VAProcFilterCap3DLUT
impl Send for _VAProcFilterCap3DLUT
impl Sync for _VAProcFilterCap3DLUT
impl Unpin for _VAProcFilterCap3DLUT
impl UnsafeUnpin for _VAProcFilterCap3DLUT
impl UnwindSafe for _VAProcFilterCap3DLUT
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