#[repr(C)]pub struct h264_pwt_item {
pub luma_weight_flag: c_int,
pub luma_weight: i32,
pub luma_offset: i32,
pub chroma_weight_flag: c_int,
pub chroma_weight: [i32; 2],
pub chroma_offset: [i32; 2],
}Expand description
7.3.3.2 Prediction weight table syntax
Fields§
§luma_weight_flag: c_int§luma_weight: i32§luma_offset: i32§chroma_weight_flag: c_int§chroma_weight: [i32; 2]§chroma_offset: [i32; 2]Trait Implementations§
Source§impl Clone for h264_pwt_item
impl Clone for h264_pwt_item
Source§fn clone(&self) -> h264_pwt_item
fn clone(&self) -> h264_pwt_item
Returns a duplicate 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 h264_pwt_item
impl Debug for h264_pwt_item
impl Copy for h264_pwt_item
Auto Trait Implementations§
impl Freeze for h264_pwt_item
impl RefUnwindSafe for h264_pwt_item
impl Send for h264_pwt_item
impl Sync for h264_pwt_item
impl Unpin for h264_pwt_item
impl UnwindSafe for h264_pwt_item
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