VirtualBox

source: vbox/trunk/src/VBox/Main/include/EBML_MKV.h@ 94521

Last change on this file since 94521 was 93115, checked in by vboxsync, 2 years ago

scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 3.1 KB
Line 
1/* $Id: EBML_MKV.h 93115 2022-01-01 11:31:46Z vboxsync $ */
2/** @file
3 * EbmlMkvIDs.h - Matroska EBML Class IDs.
4 */
5
6/*
7 * Copyright (C) 2017-2022 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#ifndef MAIN_INCLUDED_EBML_MKV_h
19#define MAIN_INCLUDED_EBML_MKV_h
20#ifndef RT_WITHOUT_PRAGMA_ONCE
21# pragma once
22#endif
23
24
25/** Matroska EBML Class IDs supported by WebM.
26 *
27 * Keep the structure clean and group elements where it makes sense
28 * for easier reading / lookup. */
29enum MkvElem
30{
31 MkvElem_EBML = 0x1A45DFA3,
32 MkvElem_EBMLVersion = 0x4286,
33 MkvElem_EBMLReadVersion = 0x42F7,
34 MkvElem_EBMLMaxIDLength = 0x42F2,
35 MkvElem_EBMLMaxSizeLength = 0x42F3,
36
37 MkvElem_DocType = 0x4282,
38 MkvElem_DocTypeVersion = 0x4287,
39 MkvElem_DocTypeReadVersion = 0x4285,
40
41 MkvElem_Segment = 0x18538067,
42 MkvElem_Segment_Duration = 0x4489,
43
44 MkvElem_SeekHead = 0x114D9B74,
45 MkvElem_Seek = 0x4DBB,
46 MkvElem_SeekID = 0x53AB,
47 MkvElem_SeekPosition = 0x53AC,
48
49 MkvElem_Info = 0x1549A966,
50 MkvElem_TimecodeScale = 0x2AD7B1,
51 MkvElem_MuxingApp = 0x4D80,
52 MkvElem_WritingApp = 0x5741,
53
54 MkvElem_Tracks = 0x1654AE6B,
55 MkvElem_TrackEntry = 0xAE,
56 MkvElem_TrackNumber = 0xD7,
57 MkvElem_TrackUID = 0x73C5,
58 MkvElem_TrackType = 0x83,
59
60 MkvElem_Language = 0x22B59C,
61
62 MkvElem_FlagLacing = 0x9C,
63
64 MkvElem_Cluster = 0x1F43B675,
65 MkvElem_Timecode = 0xE7,
66
67 MkvElem_SimpleBlock = 0xA3,
68
69 MkvElem_SeekPreRoll = 0x56BB,
70
71 MkvElem_CodecID = 0x86,
72 MkvElem_CodecDelay = 0x56AA,
73 MkvElem_CodecPrivate = 0x63A2,
74 MkvElem_CodecName = 0x258688,
75
76 MkvElem_Video = 0xE0,
77 MkvElem_PixelWidth = 0xB0,
78 MkvElem_PixelHeight = 0xBA,
79 MkvElem_FrameRate = 0x2383E3,
80
81 MkvElem_Audio = 0xE1,
82 MkvElem_SamplingFrequency = 0xB5,
83 MkvElem_OutputSamplingFrequency = 0x78B5,
84 MkvElem_Channels = 0x9F,
85 MkvElem_BitDepth = 0x6264,
86
87 MkvElem_Cues = 0x1C53BB6B,
88 MkvElem_CuePoint = 0xBB,
89 MkvElem_CueTime = 0xB3,
90 MkvElem_CueTrackPositions = 0xB7,
91 MkvElem_CueTrack = 0xF7,
92 MkvElem_CueClusterPosition = 0xF1
93};
94
95#endif /* !MAIN_INCLUDED_EBML_MKV_h */
96
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use