pub struct SuperframeHeader {
    frames_in_superframe: u32,
    frame_sizes: Vec<usize>,
}
Expand description

The VP9 superframe header as per Annex B, B.2.1, B.2.2

Fields

frames_in_superframe: u32

Indicates the number of frames within this superframe. NOTE - It is legal for a superframe to contain just a single frame and have NumFrames equal to 1.

frame_sizes: Vec<usize>

Specifies the size in bytes of frame number i (zero indexed) within this superframe.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.