scuffle-flv 0.2.2

A pure Rust FLV demuxer.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Common types used in the FLV format.

use nutype_enum::nutype_enum;

nutype_enum! {
    /// Type of multitrack.
    ///
    /// Used by both audio and video pipeline.
    pub enum AvMultitrackType(u8) {
        /// One track.
        OneTrack = 0,
        /// Many tracks with one codec.
        ManyTracks = 1,
        /// Many tracks with many codecs.
        ManyTracksManyCodecs = 2,
    }
}