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
77a7ff8f
Commit
77a7ff8f
authored
May 03, 2016
by
smallishzulu
Committed by
Carl Eugen Hoyos
May 03, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf/mpegtsenc: Define service_type "HEVC digital television service".
Fixes ticket #5455.
parent
f591b7b5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
mpegtsenc.c
libavformat/mpegtsenc.c
+5
-1
No files found.
libavformat/mpegtsenc.c
View file @
77a7ff8f
...
...
@@ -67,7 +67,8 @@ enum {
MPEGTS_SERVICE_TYPE_ADVANCED_CODEC_DIGITAL_RADIO
=
0x0A
,
MPEGTS_SERVICE_TYPE_MPEG2_DIGITAL_HDTV
=
0x11
,
MPEGTS_SERVICE_TYPE_ADVANCED_CODEC_DIGITAL_SDTV
=
0x16
,
MPEGTS_SERVICE_TYPE_ADVANCED_CODEC_DIGITAL_HDTV
=
0x19
MPEGTS_SERVICE_TYPE_ADVANCED_CODEC_DIGITAL_HDTV
=
0x19
,
MPEGTS_SERVICE_TYPE_HEVC_DIGITAL_HDTV
=
0x1F
,
};
typedef
struct
MpegTSWrite
{
const
AVClass
*
av_class
;
...
...
@@ -1819,6 +1820,9 @@ static const AVOption options[] = {
{
"advanced_codec_digital_hdtv"
,
"Advanced Codec Digital HDTV."
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
MPEGTS_SERVICE_TYPE_ADVANCED_CODEC_DIGITAL_HDTV
},
0x01
,
0xff
,
AV_OPT_FLAG_ENCODING_PARAM
,
"mpegts_service_type"
},
{
"hevc_digital_hdtv"
,
"HEVC Digital Television Service."
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
MPEGTS_SERVICE_TYPE_HEVC_DIGITAL_HDTV
},
0x01
,
0xff
,
AV_OPT_FLAG_ENCODING_PARAM
,
"mpegts_service_type"
},
{
"mpegts_pmt_start_pid"
,
"Set the first pid of the PMT."
,
offsetof
(
MpegTSWrite
,
pmt_start_pid
),
AV_OPT_TYPE_INT
,
{
.
i64
=
0x1000
},
0x0010
,
0x1f00
,
AV_OPT_FLAG_ENCODING_PARAM
},
...
...
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