diff options
author | Rodger Combs <rodger.combs@gmail.com> | 2015-09-20 09:34:05 -0500 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-09-20 20:08:01 +0200 |
commit | cf2719abeecb0a656d9bceebfca1a45e64f0cef7 (patch) | |
tree | 7c49901878ebaf6645c21a94bf10830f4ccbcfd7 /libavformat/matroskadec.c | |
parent | 2a0fc55995b7a3fea828b2e245c369d76c5a0b62 (diff) | |
download | ffmpeg-cf2719abeecb0a656d9bceebfca1a45e64f0cef7.tar.gz |
lavf/matroska: ignore ChapCountry ID for now
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/matroskadec.c')
-rw-r--r-- | libavformat/matroskadec.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c index 43ad9af0db..7a094a6fb8 100644 --- a/libavformat/matroskadec.c +++ b/libavformat/matroskadec.c @@ -474,8 +474,9 @@ static const EbmlSyntax matroska_attachments[] = { }; static const EbmlSyntax matroska_chapter_display[] = { - { MATROSKA_ID_CHAPSTRING, EBML_UTF8, 0, offsetof(MatroskaChapter, title) }, - { MATROSKA_ID_CHAPLANG, EBML_NONE }, + { MATROSKA_ID_CHAPSTRING, EBML_UTF8, 0, offsetof(MatroskaChapter, title) }, + { MATROSKA_ID_CHAPLANG, EBML_NONE }, + { MATROSKA_ID_CHAPCOUNTRY, EBML_NONE }, { 0 } }; |