1 | /* $Id$ */
|
---|
2 | /** @file
|
---|
3 | * EbmlMkvIDs.h - Matroska EBML Class IDs.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2017 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | /** Matroska EBML Class IDs supported by WebM.
|
---|
19 | *
|
---|
20 | * Keep the structure clean and group elements where it makes sense
|
---|
21 | * for easier reading / lookup. */
|
---|
22 | enum MkvElem
|
---|
23 | {
|
---|
24 | MkvElem_EBML = 0x1A45DFA3,
|
---|
25 | MkvElem_EBMLVersion = 0x4286,
|
---|
26 | MkvElem_EBMLReadVersion = 0x42F7,
|
---|
27 | MkvElem_EBMLMaxIDLength = 0x42F2,
|
---|
28 | MkvElem_EBMLMaxSizeLength = 0x42F3,
|
---|
29 |
|
---|
30 | MkvElem_DocType = 0x4282,
|
---|
31 | MkvElem_DocTypeVersion = 0x4287,
|
---|
32 | MkvElem_DocTypeReadVersion = 0x4285,
|
---|
33 |
|
---|
34 | MkvElem_Segment = 0x18538067,
|
---|
35 | MkvElem_Segment_Duration = 0x4489,
|
---|
36 |
|
---|
37 | MkvElem_SeekHead = 0x114D9B74,
|
---|
38 | MkvElem_Seek = 0x4DBB,
|
---|
39 | MkvElem_SeekID = 0x53AB,
|
---|
40 | MkvElem_SeekPosition = 0x53AC,
|
---|
41 |
|
---|
42 | MkvElem_Info = 0x1549A966,
|
---|
43 | MkvElem_TimecodeScale = 0x2AD7B1,
|
---|
44 | MkvElem_MuxingApp = 0x4D80,
|
---|
45 | MkvElem_WritingApp = 0x5741,
|
---|
46 |
|
---|
47 | MkvElem_Tracks = 0x1654AE6B,
|
---|
48 | MkvElem_TrackEntry = 0xAE,
|
---|
49 | MkvElem_TrackNumber = 0xD7,
|
---|
50 | MkvElem_TrackUID = 0x73C5,
|
---|
51 | MkvElem_TrackType = 0x83,
|
---|
52 |
|
---|
53 | MkvElem_Language = 0x22B59C,
|
---|
54 |
|
---|
55 | MkvElem_FlagLacing = 0x9C,
|
---|
56 |
|
---|
57 | MkvElem_Cluster = 0x1F43B675,
|
---|
58 | MkvElem_Timecode = 0xE7,
|
---|
59 |
|
---|
60 | MkvElem_SimpleBlock = 0xA3,
|
---|
61 |
|
---|
62 | MkvElem_SeekPreRoll = 0x56BB,
|
---|
63 |
|
---|
64 | MkvElem_CodecID = 0x86,
|
---|
65 | MkvElem_CodecDelay = 0x56AA,
|
---|
66 | MkvElem_CodecPrivate = 0x63A2,
|
---|
67 | MkvElem_CodecName = 0x258688,
|
---|
68 |
|
---|
69 | MkvElem_Video = 0xE0,
|
---|
70 | MkvElem_PixelWidth = 0xB0,
|
---|
71 | MkvElem_PixelHeight = 0xBA,
|
---|
72 |
|
---|
73 | MkvElem_Audio = 0xE1,
|
---|
74 | MkvElem_SamplingFrequency = 0xB5,
|
---|
75 | MkvElem_OutputSamplingFrequency = 0x78B5,
|
---|
76 | MkvElem_Channels = 0x9F,
|
---|
77 | MkvElem_BitDepth = 0x6264,
|
---|
78 |
|
---|
79 | MkvElem_Cues = 0x1C53BB6B,
|
---|
80 | MkvElem_CuePoint = 0xBB,
|
---|
81 | MkvElem_CueTime = 0xB3,
|
---|
82 | MkvElem_CueTrackPositions = 0xB7,
|
---|
83 | MkvElem_CueTrack = 0xF7,
|
---|
84 | MkvElem_CueClusterPosition = 0xF1
|
---|
85 | };
|
---|
86 |
|
---|