pub struct AVCDecoderConfigurationRecord {
pub configuration_version: u8,
pub profile_indication: u8,
pub profile_compatibility: u8,
pub level_indication: u8,
pub length_size_minus_one: u8,
pub sps: Vec<Bytes>,
pub pps: Vec<Bytes>,
pub extended_config: Option<AvccExtendedConfig>,
}Expand description
AVC (H.264) Decoder Configuration Record ISO/IEC 14496-15:2022(E) - 5.3.2.1.2
Fields§
§configuration_version: u8§profile_indication: u8§profile_compatibility: u8§level_indication: u8§length_size_minus_one: u8§sps: Vec<Bytes>§pps: Vec<Bytes>§extended_config: Option<AvccExtendedConfig>Implementations§
Trait Implementations§
Source§impl Clone for AVCDecoderConfigurationRecord
impl Clone for AVCDecoderConfigurationRecord
Source§fn clone(&self) -> AVCDecoderConfigurationRecord
fn clone(&self) -> AVCDecoderConfigurationRecord
Returns a copy 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 PartialEq for AVCDecoderConfigurationRecord
impl PartialEq for AVCDecoderConfigurationRecord
Source§fn eq(&self, other: &AVCDecoderConfigurationRecord) -> bool
fn eq(&self, other: &AVCDecoderConfigurationRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AVCDecoderConfigurationRecord
Auto Trait Implementations§
impl Freeze for AVCDecoderConfigurationRecord
impl RefUnwindSafe for AVCDecoderConfigurationRecord
impl Send for AVCDecoderConfigurationRecord
impl Sync for AVCDecoderConfigurationRecord
impl Unpin for AVCDecoderConfigurationRecord
impl UnwindSafe for AVCDecoderConfigurationRecord
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