pub struct PredWeightTable {
pub luma_log2_weight_denom: u8,
pub chroma_log2_weight_denom: u8,
pub luma_weight_l0: [i16; 32],
pub luma_offset_l0: [i8; 32],
pub chroma_weight_l0: [[i16; 2]; 32],
pub chroma_offset_l0: [[i8; 2]; 32],
pub luma_weight_l1: [i16; 32],
pub luma_offset_l1: [i16; 32],
pub chroma_weight_l1: [[i16; 2]; 32],
pub chroma_offset_l1: [[i8; 2]; 32],
}
Fields§
§luma_log2_weight_denom: u8
§chroma_log2_weight_denom: u8
§luma_weight_l0: [i16; 32]
§luma_offset_l0: [i8; 32]
§chroma_weight_l0: [[i16; 2]; 32]
§chroma_offset_l0: [[i8; 2]; 32]
§luma_weight_l1: [i16; 32]
§luma_offset_l1: [i16; 32]
§chroma_weight_l1: [[i16; 2]; 32]
§chroma_offset_l1: [[i8; 2]; 32]
Trait Implementations§
Source§impl Clone for PredWeightTable
impl Clone for PredWeightTable
Source§fn clone(&self) -> PredWeightTable
fn clone(&self) -> PredWeightTable
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PredWeightTable
impl Debug for PredWeightTable
Source§impl Default for PredWeightTable
impl Default for PredWeightTable
Source§fn default() -> PredWeightTable
fn default() -> PredWeightTable
Returns the “default value” for a type. Read more
Source§impl PartialEq for PredWeightTable
impl PartialEq for PredWeightTable
impl Eq for PredWeightTable
impl StructuralPartialEq for PredWeightTable
Auto Trait Implementations§
impl Freeze for PredWeightTable
impl RefUnwindSafe for PredWeightTable
impl Send for PredWeightTable
impl Sync for PredWeightTable
impl Unpin for PredWeightTable
impl UnwindSafe for PredWeightTable
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