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
6ea11966
Commit
6ea11966
authored
Apr 16, 2014
by
Nicolas George
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc: add AV_CODEC_ID_BIN_DATA.
parent
892e2c2a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
avcodec.h
libavcodec/avcodec.h
+1
-0
codec_desc.c
libavcodec/codec_desc.c
+6
-0
No files found.
libavcodec/avcodec.h
View file @
6ea11966
...
...
@@ -533,6 +533,7 @@ enum AVCodecID {
AV_CODEC_ID_SMPTE_KLV
=
MKBETAG
(
'K'
,
'L'
,
'V'
,
'A'
),
AV_CODEC_ID_DVD_NAV
=
MKBETAG
(
'D'
,
'N'
,
'A'
,
'V'
),
AV_CODEC_ID_TIMED_ID3
=
MKBETAG
(
'T'
,
'I'
,
'D'
,
'3'
),
AV_CODEC_ID_BIN_DATA
=
MKBETAG
(
'D'
,
'A'
,
'T'
,
'A'
),
AV_CODEC_ID_PROBE
=
0x19000
,
///< codec_id is not known (like AV_CODEC_ID_NONE) but lavf should attempt to identify it
...
...
libavcodec/codec_desc.c
View file @
6ea11966
...
...
@@ -2702,6 +2702,12 @@ static const AVCodecDescriptor codec_descriptors[] = {
.
name
=
"timed_id3"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"timed ID3 metadata"
),
},
{
.
id
=
AV_CODEC_ID_BIN_DATA
,
.
type
=
AVMEDIA_TYPE_DATA
,
.
name
=
"bin_data"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"binary data"
),
},
/* deprecated codec ids */
{
...
...
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