Adding/Uncommenting elements for Alpha Support

Uncommenting Track elements related to BlockAdditional and adding
the new AlphaMode element as specified in the matroska spec here:
http://matroska.org/technical/specs/index.html#AlphaMode

Change-Id: I87895931e8885e4832efa74776ab1bea91a634e2
This commit is contained in:
Vignesh Venkatasubramanian 2013-04-01 15:36:29 -07:00
Родитель add343383a
Коммит 416bd7529c
1 изменённых файлов: 6 добавлений и 5 удалений

Просмотреть файл

@ -67,10 +67,10 @@ enum mkv {
BlockGroup = 0xA0, BlockGroup = 0xA0,
Block = 0xA1, Block = 0xA1,
/* BlockVirtual = 0xA2, */ /* BlockVirtual = 0xA2, */
/* BlockAdditions = 0x75A1, */ BlockAdditions = 0x75A1,
/* BlockMore = 0xA6, */ BlockMore = 0xA6,
/* BlockAddID = 0xEE, */ BlockAddID = 0xEE,
/* BlockAdditional = 0xA5, */ BlockAdditional = 0xA5,
BlockDuration = 0x9B, BlockDuration = 0x9B,
/* ReferencePriority = 0xFA, */ /* ReferencePriority = 0xFA, */
ReferenceBlock = 0xFB, ReferenceBlock = 0xFB,
@ -100,7 +100,7 @@ enum mkv {
DefaultDuration = 0x23E383, DefaultDuration = 0x23E383,
/* TrackTimecodeScale = 0x23314F, */ /* TrackTimecodeScale = 0x23314F, */
/* TrackOffset = 0x537F, */ /* TrackOffset = 0x537F, */
/* MaxBlockAdditionID = 0x55EE, */ MaxBlockAdditionID = 0x55EE,
Name = 0x536E, Name = 0x536E,
Language = 0x22B59C, Language = 0x22B59C,
CodecID = 0x86, CodecID = 0x86,
@ -120,6 +120,7 @@ enum mkv {
Video = 0xE0, Video = 0xE0,
FlagInterlaced = 0x9A, FlagInterlaced = 0x9A,
StereoMode = 0x53B8, StereoMode = 0x53B8,
AlphaMode = 0x53C0,
PixelWidth = 0xB0, PixelWidth = 0xB0,
PixelHeight = 0xBA, PixelHeight = 0xBA,
PixelCropBottom = 0x54AA, PixelCropBottom = 0x54AA,