diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-05-15 15:48:15 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-05-27 21:25:53 +0200 |
commit | 564b7e0c0095768cd20001b28154d69462be54e7 (patch) | |
tree | 3b46859474deee486b5d81ee8a43c5ddc08a8a9a /libavformat/matroska.h | |
parent | c3c08baefbf8c9b19c9c1f1bd7a899b697422eea (diff) | |
download | ffmpeg-564b7e0c0095768cd20001b28154d69462be54e7.tar.gz |
matroskadec: silently skip CodecState element.
mkvmerge apparrently uses it for mpeg1/2 video, but it contains the same
information as CodecPrivate, so it can be ignored.
Diffstat (limited to 'libavformat/matroska.h')
-rw-r--r-- | libavformat/matroska.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/matroska.h b/libavformat/matroska.h index b1f7ae4ed5..0dbc724d56 100644 --- a/libavformat/matroska.h +++ b/libavformat/matroska.h @@ -176,6 +176,7 @@ #define MATROSKA_ID_BLOCK 0xA1 #define MATROSKA_ID_BLOCKDURATION 0x9B #define MATROSKA_ID_BLOCKREFERENCE 0xFB +#define MATROSKA_ID_CODECSTATE 0xA4 /* IDs in the attachments master */ #define MATROSKA_ID_ATTACHEDFILE 0x61A7 |