#[repr(C)]pub struct StdVideoH264ScalingLists {
pub scaling_list_present_mask: u16,
pub use_default_scaling_matrix_mask: u16,
pub ScalingList4x4: [[u8; 16]; 6],
pub ScalingList8x8: [[u8; 64]; 6],
}
Fields§
§scaling_list_present_mask: u16
§use_default_scaling_matrix_mask: u16
§ScalingList4x4: [[u8; 16]; 6]
§ScalingList8x8: [[u8; 64]; 6]
Trait Implementations§
Source§impl Clone for StdVideoH264ScalingLists
impl Clone for StdVideoH264ScalingLists
Source§fn clone(&self) -> StdVideoH264ScalingLists
fn clone(&self) -> StdVideoH264ScalingLists
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 StdVideoH264ScalingLists
impl Default for StdVideoH264ScalingLists
impl Copy for StdVideoH264ScalingLists
Auto Trait Implementations§
impl Freeze for StdVideoH264ScalingLists
impl RefUnwindSafe for StdVideoH264ScalingLists
impl Send for StdVideoH264ScalingLists
impl Sync for StdVideoH264ScalingLists
impl Unpin for StdVideoH264ScalingLists
impl UnwindSafe for StdVideoH264ScalingLists
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