#[repr(C)]pub struct h264_scaling_matrix {
pub scaling_list_present_flag: [c_int; 12],
pub scaling_list_4x4: [[i32; 16]; 6],
pub scaling_list_8x8: [[i32; 64]; 6],
pub use_default_4x4: [c_int; 6],
pub use_default_8x8: [c_int; 6],
pub _optimized_4x4: [c_int; 6],
pub _optimized_8x8: [c_int; 6],
}Expand description
7.3.2.1 Sequence parameter set RBSP syntax 7.3.2.2 Picture parameter set RBSP syntax
Fields§
§scaling_list_present_flag: [c_int; 12]§scaling_list_4x4: [[i32; 16]; 6]§scaling_list_8x8: [[i32; 64]; 6]§use_default_4x4: [c_int; 6]§use_default_8x8: [c_int; 6]§_optimized_4x4: [c_int; 6]§_optimized_8x8: [c_int; 6]Trait Implementations§
Source§impl Clone for h264_scaling_matrix
impl Clone for h264_scaling_matrix
Source§fn clone(&self) -> h264_scaling_matrix
fn clone(&self) -> h264_scaling_matrix
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_scaling_matrix
impl Debug for h264_scaling_matrix
impl Copy for h264_scaling_matrix
Auto Trait Implementations§
impl Freeze for h264_scaling_matrix
impl RefUnwindSafe for h264_scaling_matrix
impl Send for h264_scaling_matrix
impl Sync for h264_scaling_matrix
impl Unpin for h264_scaling_matrix
impl UnwindSafe for h264_scaling_matrix
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