Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
cf2719ab
Commit
cf2719ab
authored
Sep 20, 2015
by
Rodger Combs
Committed by
Michael Niedermayer
Sep 20, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf/matroska: ignore ChapCountry ID for now
Signed-off-by:
Michael Niedermayer
<
michael@niedermayer.cc
>
parent
2a0fc559
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
matroska.h
libavformat/matroska.h
+1
-0
matroskadec.c
libavformat/matroskadec.c
+3
-2
No files found.
libavformat/matroska.h
View file @
cf2719ab
...
...
@@ -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
...
...
libavformat/matroskadec.c
View file @
cf2719ab
...
...
@@ -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
}
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment