scuffle-h265 0.2.2

A pure Rust H.265 header decoder.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use nutype_enum::nutype_enum;

nutype_enum! {
    /// The number of temporal layers in the stream.
    ///
    /// `0` and `1` are special values.
    ///
    /// Any other value represents the actual number of temporal layers.
    pub enum NumTemporalLayers(u8) {
        /// The stream might be temporally scalable.
        Unknown = 0,
        /// The stream is not temporally scalable.
        NotScalable = 1,
    }
}