Struct webrtc_media::io::ivf_reader::IVFFileHeader [−][src]
pub struct IVFFileHeader {
pub signature: [u8; 4],
pub version: u16,
pub header_size: u16,
pub four_cc: [u8; 4],
pub width: u16,
pub height: u16,
pub timebase_denominator: u32,
pub timebase_numerator: u32,
pub num_frames: u32,
pub unused: u32,
}Expand description
IVFFileHeader 32-byte header for IVF files https://wiki.multimedia.cx/index.php/IVF
Fields
signature: [u8; 4]version: u16header_size: u16four_cc: [u8; 4]width: u16height: u16timebase_denominator: u32timebase_numerator: u32num_frames: u32unused: u32Trait Implementations
Returns the “default value” for a type. Read more
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for IVFFileHeader
impl Send for IVFFileHeader
impl Sync for IVFFileHeader
impl Unpin for IVFFileHeader
impl UnwindSafe for IVFFileHeader
Blanket Implementations
Mutably borrows from an owned value. Read more