pub struct Sps {
pub width: u64,
pub height: u64,
pub frame_rate: f64,
pub color_config: Option<ColorConfig>,
}Expand description
The Sequence Parameter Set. ISO/IEC-14496-10-2022 - 7.3.2
Fields§
§width: u64The width as a u64.
height: u64The height as a u64.
frame_rate: f64The framerate as a f64.
color_config: Option<ColorConfig>An optional ColorConfig. Refer to the ColorConfig struct for more info.
Implementations§
Trait Implementations§
impl StructuralPartialEq for Sps
Auto Trait Implementations§
impl Freeze for Sps
impl RefUnwindSafe for Sps
impl Send for Sps
impl Sync for Sps
impl Unpin for Sps
impl UnwindSafe for Sps
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