Expand description
The format module provides the traits and support structures necessary to implement media
demuxers.
Modules§
Structs§
- Cue
- A
Cueis a designated point of time within a media stream. - CuePoint
- A
CuePointis a point, represented as a frame offset, within aCue. - Format
Options FormatOptionsis a common set of options that all demuxers use.- Packet
- A
Packetcontains a discrete amount of encoded data for a single codec bitstream. The exact amount of data is bounded, but not defined, and is dependant on the container and/or the encapsulated codec. - Seeked
To SeekedTois the result of a seek.- Track
- A
Trackis an independently coded media bitstream. A media format may contain multiple tracks in one container. Each of those tracks are represented by oneTrack.
Enums§
Traits§
- Format
Reader - A
FormatReaderis a container demuxer. It provides methods to probe a media container for information and access the tracks encapsulated in the container.