mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 19:58:59 +00:00
lavf/matroska: ignore ChapCountry ID for now
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
2a0fc55995
commit
cf2719abee
@ -218,6 +218,7 @@
|
||||
#define MATROSKA_ID_CHAPTERDISPLAY 0x80
|
||||
#define MATROSKA_ID_CHAPSTRING 0x85
|
||||
#define MATROSKA_ID_CHAPLANG 0x437C
|
||||
#define MATROSKA_ID_CHAPCOUNTRY 0x437E
|
||||
#define MATROSKA_ID_EDITIONUID 0x45BC
|
||||
#define MATROSKA_ID_EDITIONFLAGHIDDEN 0x45BD
|
||||
#define MATROSKA_ID_EDITIONFLAGDEFAULT 0x45DB
|
||||
|
@ -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 }
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user