scuffle_flv/av1.rs
1use bytes::Bytes;
2use scuffle_av1::AV1CodecConfigurationRecord;
3
4/// AV1 Packet
5/// This is a container for av1 data.
6/// This enum contains the data for the different types of av1 packets.
7#[derive(Debug, Clone, PartialEq)]
8pub enum Av1Packet {
9 /// AV1 Sequence Start
10 SequenceStart(AV1CodecConfigurationRecord),
11 /// AV1 Raw Data
12 Raw(Bytes),
13}