pub struct AV1VideoDescriptor {
pub tag: u8,
pub length: u8,
pub codec_configuration_record: AV1CodecConfigurationRecord,
}
Expand description
AV1 Video Descriptor
https://aomediacodec.github.io/av1-mpeg2-ts/#av1-video-descriptor
Fields§
§tag: u8
This value shall be set to 0x80
.
8 bits
length: u8
This value shall be set to 4.
8 bits
codec_configuration_record: AV1CodecConfigurationRecord
AV1 Codec Configuration Record
Implementations§
Trait Implementations§
Source§impl Clone for AV1VideoDescriptor
impl Clone for AV1VideoDescriptor
Source§fn clone(&self) -> AV1VideoDescriptor
fn clone(&self) -> AV1VideoDescriptor
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 Debug for AV1VideoDescriptor
impl Debug for AV1VideoDescriptor
Source§impl PartialEq for AV1VideoDescriptor
impl PartialEq for AV1VideoDescriptor
impl StructuralPartialEq for AV1VideoDescriptor
Auto Trait Implementations§
impl !Freeze for AV1VideoDescriptor
impl RefUnwindSafe for AV1VideoDescriptor
impl Send for AV1VideoDescriptor
impl Sync for AV1VideoDescriptor
impl Unpin for AV1VideoDescriptor
impl UnwindSafe for AV1VideoDescriptor
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