Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Releases
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Stefan Westerfeld
ffmpeg
Commits
0d3a2f93
Commit
0d3a2f93
authored
Mar 25, 2023
by
Devin Heitmueller
Committed by
Marton Balint
Mar 26, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec: add SMPTE 2038 VANC data codec used in MPEG-TS streams
Signed-off-by:
Marton Balint
<
cus@passwd.hu
>
parent
261fb55e
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
2 deletions
+9
-2
codec_desc.c
libavcodec/codec_desc.c
+6
-0
codec_id.h
libavcodec/codec_id.h
+1
-0
version.h
libavcodec/version.h
+2
-2
No files found.
libavcodec/codec_desc.c
View file @
0d3a2f93
...
...
@@ -3627,6 +3627,12 @@ static const AVCodecDescriptor codec_descriptors[] = {
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"binary data"
),
.
mime_types
=
MT
(
"application/octet-stream"
),
},
{
.
id
=
AV_CODEC_ID_SMPTE_2038
,
.
type
=
AVMEDIA_TYPE_DATA
,
.
name
=
"smpte_2038"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"SMPTE ST 2038 VANC in MPEG-2 TS"
),
},
{
.
id
=
AV_CODEC_ID_MPEG2TS
,
.
type
=
AVMEDIA_TYPE_DATA
,
...
...
libavcodec/codec_id.h
View file @
0d3a2f93
...
...
@@ -582,6 +582,7 @@ enum AVCodecID {
AV_CODEC_ID_DVD_NAV
,
AV_CODEC_ID_TIMED_ID3
,
AV_CODEC_ID_BIN_DATA
,
AV_CODEC_ID_SMPTE_2038
,
AV_CODEC_ID_PROBE
=
0x19000
,
///< codec_id is not known (like AV_CODEC_ID_NONE) but lavf should attempt to identify it
...
...
libavcodec/version.h
View file @
0d3a2f93
...
...
@@ -29,8 +29,8 @@
#include "version_major.h"
#define LIBAVCODEC_VERSION_MINOR
6
#define LIBAVCODEC_VERSION_MICRO 10
1
#define LIBAVCODEC_VERSION_MINOR
7
#define LIBAVCODEC_VERSION_MICRO 10
0
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
LIBAVCODEC_VERSION_MINOR, \
...
...
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