#[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: StdVideoEncodeH264WeightTableFlags
§luma_log2_weight_denom: u8
§chroma_log2_weight_denom: u8
§luma_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§
Source§impl Clone for StdVideoEncodeH264WeightTable
impl Clone for StdVideoEncodeH264WeightTable
Source§fn clone(&self) -> StdVideoEncodeH264WeightTable
fn clone(&self) -> StdVideoEncodeH264WeightTable
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for StdVideoEncodeH264WeightTable
impl Default for StdVideoEncodeH264WeightTable
Source§fn default() -> StdVideoEncodeH264WeightTable
fn default() -> StdVideoEncodeH264WeightTable
Returns the “default value” for a type. Read more
impl Copy for StdVideoEncodeH264WeightTable
Auto Trait Implementations§
impl Freeze for StdVideoEncodeH264WeightTable
impl RefUnwindSafe for StdVideoEncodeH264WeightTable
impl Send for StdVideoEncodeH264WeightTable
impl Sync for StdVideoEncodeH264WeightTable
impl Unpin for StdVideoEncodeH264WeightTable
impl UnwindSafe for StdVideoEncodeH264WeightTable
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