VirtualBox

source: vbox/trunk/src/VBox/Main/src-client/EbmlMkvIDs.h@ 67414

Last change on this file since 67414 was 65353, checked in by vboxsync, 8 years ago

VideoRec: Update.

  • Property svn:executable set to *
File size: 2.8 KB
Line 
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. */
22enum 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_Cluster = 0x1F43B675,
54 MkvElem_Timecode = 0xE7,
55
56 MkvElem_SimpleBlock = 0xA3,
57
58 MkvElem_SeekPreRoll = 0x56BB,
59
60 MkvElem_CodecID = 0x86,
61 MkvElem_CodecDelay = 0x56AA,
62 MkvElem_CodecPrivate = 0x63A2,
63 MkvElem_CodecName = 0x258688,
64
65 MkvElem_Video = 0xE0,
66 MkvElem_PixelWidth = 0xB0,
67 MkvElem_PixelHeight = 0xBA,
68 MkvElem_FrameRate = 0x2383E3,
69
70 MkvElem_Audio = 0xE1,
71 MkvElem_SamplingFrequency = 0xB5,
72 MkvElem_OutputSamplingFrequency = 0x78B5,
73 MkvElem_Channels = 0x9F,
74 MkvElem_BitDepth = 0x6264,
75
76 MkvElem_Cues = 0x1C53BB6B,
77 MkvElem_CuePoint = 0xBB,
78 MkvElem_CueTime = 0xB3,
79 MkvElem_CueTrackPositions = 0xB7,
80 MkvElem_CueTrack = 0xF7,
81 MkvElem_CueClusterPosition = 0xF1
82};
83
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette