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
9282fbb9
Commit
9282fbb9
authored
Dec 09, 2012
by
Peter Ross
Committed by
Michael Niedermayer
Dec 09, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mpegts: demux asynchronous SMPTE 336M Key-Length-Value (KLV) metadata
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
3193a5cd
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
0 deletions
+8
-0
avcodec.h
libavcodec/avcodec.h
+1
-0
codec_desc.c
libavcodec/codec_desc.c
+6
-0
mpegts.c
libavformat/mpegts.c
+1
-0
No files found.
libavcodec/avcodec.h
View file @
9282fbb9
...
...
@@ -469,6 +469,7 @@ enum AVCodecID {
AV_CODEC_ID_XBIN
=
MKBETAG
(
'X'
,
'B'
,
'I'
,
'N'
),
AV_CODEC_ID_IDF
=
MKBETAG
(
0
,
'I'
,
'D'
,
'F'
),
AV_CODEC_ID_OTF
=
MKBETAG
(
0
,
'O'
,
'T'
,
'F'
),
AV_CODEC_ID_SMPTE_KLV
=
MKBETAG
(
'K'
,
'L'
,
'V'
,
'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 @
9282fbb9
...
...
@@ -2446,6 +2446,12 @@ static const AVCodecDescriptor codec_descriptors[] = {
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"iCEDraw text"
),
.
props
=
AV_CODEC_PROP_INTRA_ONLY
,
},
{
.
id
=
AV_CODEC_ID_SMPTE_KLV
,
.
type
=
AVMEDIA_TYPE_SUBTITLE
,
.
name
=
"klv"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"SMPTE 336M Key-Length-Value (KLV) metadata"
),
},
};
...
...
libavformat/mpegts.c
View file @
9282fbb9
...
...
@@ -581,6 +581,7 @@ static const StreamType REGD_types[] = {
{
MKTAG
(
'D'
,
'T'
,
'S'
,
'1'
),
AVMEDIA_TYPE_AUDIO
,
AV_CODEC_ID_DTS
},
{
MKTAG
(
'D'
,
'T'
,
'S'
,
'2'
),
AVMEDIA_TYPE_AUDIO
,
AV_CODEC_ID_DTS
},
{
MKTAG
(
'D'
,
'T'
,
'S'
,
'3'
),
AVMEDIA_TYPE_AUDIO
,
AV_CODEC_ID_DTS
},
{
MKTAG
(
'K'
,
'L'
,
'V'
,
'A'
),
AVMEDIA_TYPE_DATA
,
AV_CODEC_ID_SMPTE_KLV
},
{
MKTAG
(
'V'
,
'C'
,
'-'
,
'1'
),
AVMEDIA_TYPE_VIDEO
,
AV_CODEC_ID_VC1
},
{
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