scuffle_h265/enums/
video_format.rs

1use nutype_enum::nutype_enum;
2
3nutype_enum! {
4    /// ISO/IEC 23008-2 - Table E.2
5    pub enum VideoFormat(u8) {
6        /// Component
7        Component = 0,
8        /// PAL
9        PAL = 1,
10        /// NTSC
11        NTSC = 2,
12        /// SECAM
13        SECAM = 3,
14        /// MAC
15        MAC = 4,
16        /// Unspecified video format
17        Unspecified = 5,
18    }
19}