#[repr(C)]pub struct StdVideoEncodeH264WeightTable {
pub flags: StdVideoEncodeH264WeightTableFlags,
pub luma_log2_weight_denom: u8,
pub chroma_log2_weight_denom: u8,
pub luma_weight_l0: [i8; 32],
pub luma_offset_l0: [i8; 32],
pub chroma_weight_l0: [[i8; 2]; 32],
pub chroma_offset_l0: [[i8; 2]; 32],
pub luma_weight_l1: [i8; 32],
pub luma_offset_l1: [i8; 32],
pub chroma_weight_l1: [[i8; 2]; 32],
pub chroma_offset_l1: [[i8; 2]; 32],
}Fields
flags: StdVideoEncodeH264WeightTableFlagsluma_log2_weight_denom: u8chroma_log2_weight_denom: u8luma_weight_l0: [i8; 32]luma_offset_l0: [i8; 32]chroma_weight_l0: [[i8; 2]; 32]chroma_offset_l0: [[i8; 2]; 32]luma_weight_l1: [i8; 32]luma_offset_l1: [i8; 32]chroma_weight_l1: [[i8; 2]; 32]chroma_offset_l1: [[i8; 2]; 32]Trait Implementations
sourceimpl Clone for StdVideoEncodeH264WeightTable
impl Clone for StdVideoEncodeH264WeightTable
sourcefn clone(&self) -> StdVideoEncodeH264WeightTable
fn clone(&self) -> StdVideoEncodeH264WeightTable
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for StdVideoEncodeH264WeightTable
impl Debug for StdVideoEncodeH264WeightTable
impl Copy for StdVideoEncodeH264WeightTable
Auto Trait Implementations
impl RefUnwindSafe for StdVideoEncodeH264WeightTable
impl Send for StdVideoEncodeH264WeightTable
impl Sync for StdVideoEncodeH264WeightTable
impl Unpin for StdVideoEncodeH264WeightTable
impl UnwindSafe for StdVideoEncodeH264WeightTable
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more