diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-05-28 08:04:02 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-05-28 08:04:02 +0200 |
commit | 91db8ff203048e3d6fed589e8352d3a5407d4302 (patch) | |
tree | 7d770c4048628cb98bc8bbbf9fee45b088711345 /libavformat/matroskadec.c | |
parent | 97f7586cd6a1c3741258d6d70b3cbbbde15b1618 (diff) | |
parent | 564b7e0c0095768cd20001b28154d69462be54e7 (diff) | |
download | ffmpeg-91db8ff203048e3d6fed589e8352d3a5407d4302.tar.gz |
Merge commit '564b7e0c0095768cd20001b28154d69462be54e7'
* commit '564b7e0c0095768cd20001b28154d69462be54e7':
matroskadec: silently skip CodecState element.
smacker: fix off-by-one error in palette expanding code
Conflicts:
libavformat/smacker.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/matroskadec.c')
-rw-r--r-- | libavformat/matroskadec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c index 9aca99a1a3..b82f289e9f 100644 --- a/libavformat/matroskadec.c +++ b/libavformat/matroskadec.c @@ -564,6 +564,7 @@ static EbmlSyntax matroska_blockgroup[] = { { MATROSKA_ID_SIMPLEBLOCK, EBML_BIN, 0, offsetof(MatroskaBlock,bin) }, { MATROSKA_ID_BLOCKDURATION, EBML_UINT, 0, offsetof(MatroskaBlock,duration) }, { MATROSKA_ID_BLOCKREFERENCE, EBML_UINT, 0, offsetof(MatroskaBlock,reference) }, + { MATROSKA_ID_CODECSTATE, EBML_NONE }, { 1, EBML_UINT, 0, offsetof(MatroskaBlock,non_simple), {.u=1} }, { 0 } }; |