Struct cros_codecs::codec::h264::parser::PredWeightTable    
source · pub struct PredWeightTable { /* private fields */ }Implementations§
source§impl PredWeightTable
 
impl PredWeightTable
pub fn luma_log2_weight_denom(&self) -> u8
pub fn chroma_log2_weight_denom(&self) -> u8
pub fn luma_weight_l0(&self) -> [i16; 32]
pub fn luma_offset_l0(&self) -> [i8; 32]
pub fn chroma_weight_l0(&self) -> [[i16; 2]; 32]
pub fn chroma_offset_l0(&self) -> [[i8; 2]; 32]
pub fn luma_weight_l1(&self) -> [i16; 32]
pub fn luma_offset_l1(&self) -> [i16; 32]
pub fn chroma_weight_l1(&self) -> [[i16; 2]; 32]
pub fn chroma_offset_l1(&self) -> [[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<PredWeightTable> for PredWeightTable
 
impl PartialEq<PredWeightTable> for PredWeightTable
source§fn eq(&self, other: &PredWeightTable) -> bool
 
fn eq(&self, other: &PredWeightTable) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl Eq for PredWeightTable
impl StructuralEq for PredWeightTable
impl StructuralPartialEq for PredWeightTable
Auto Trait Implementations§
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