#[repr(C)]pub struct StdVideoEncodeH265WeightTable {
pub flags: StdVideoEncodeH265WeightTableFlags,
pub luma_log2_weight_denom: u8,
pub delta_chroma_log2_weight_denom: i8,
pub delta_luma_weight_l0: [i8; 15],
pub luma_offset_l0: [i8; 15],
pub delta_chroma_weight_l0: [[i8; 2]; 15],
pub delta_chroma_offset_l0: [[i8; 2]; 15],
pub delta_luma_weight_l1: [i8; 15],
pub luma_offset_l1: [i8; 15],
pub delta_chroma_weight_l1: [[i8; 2]; 15],
pub delta_chroma_offset_l1: [[i8; 2]; 15],
}
Fields§
§flags: StdVideoEncodeH265WeightTableFlags
§luma_log2_weight_denom: u8
§delta_chroma_log2_weight_denom: i8
§delta_luma_weight_l0: [i8; 15]
§luma_offset_l0: [i8; 15]
§delta_chroma_weight_l0: [[i8; 2]; 15]
§delta_chroma_offset_l0: [[i8; 2]; 15]
§delta_luma_weight_l1: [i8; 15]
§luma_offset_l1: [i8; 15]
§delta_chroma_weight_l1: [[i8; 2]; 15]
§delta_chroma_offset_l1: [[i8; 2]; 15]
Trait Implementations§
Source§impl Clone for StdVideoEncodeH265WeightTable
impl Clone for StdVideoEncodeH265WeightTable
Source§fn clone(&self) -> StdVideoEncodeH265WeightTable
fn clone(&self) -> StdVideoEncodeH265WeightTable
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 StdVideoEncodeH265WeightTable
impl Default for StdVideoEncodeH265WeightTable
Source§fn default() -> StdVideoEncodeH265WeightTable
fn default() -> StdVideoEncodeH265WeightTable
Returns the “default value” for a type. Read more
impl Copy for StdVideoEncodeH265WeightTable
Auto Trait Implementations§
impl Freeze for StdVideoEncodeH265WeightTable
impl RefUnwindSafe for StdVideoEncodeH265WeightTable
impl Send for StdVideoEncodeH265WeightTable
impl Sync for StdVideoEncodeH265WeightTable
impl Unpin for StdVideoEncodeH265WeightTable
impl UnwindSafe for StdVideoEncodeH265WeightTable
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