using System; namespace BinaryObjectScanner.Models.DVD { [Flags] public enum ProgramChainCategory : byte { MenuTypeTitle = 0x02, Entry = 0x80, } [Flags] public enum TitleType : byte { /// /// Uop0 Time play or search /// Uop0TimePlayOrSearch = 0x01, /// /// Uop1 PTT play or search /// Uop1PTTPlayOrSearch = 0x02, /// /// Jump/Link/Call commands - exist /// JumpLinkCallExist = 0x04, /// /// Jump/Link/Call commands - button /// JumpLinkCallButton = 0x08, /// /// Jump/Link/Call commands - pre/post /// JumpLinkCallPrePost = 0x10, /// /// Jump/Link/Call commands - cell /// JumpLinkCallCell = 0x20, /// /// 0=one_sequential_pgc /// 1=not one_sequential (random, shuffle, stills, loops, or more than one pgc) /// ComplexPGC = 0x40, /// /// Reserved /// Reserved = 0x80, } }