diff options
author | smallishzulu <alikizil@gmail.com> | 2016-05-03 14:25:22 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-05-03 21:35:21 +0200 |
commit | 77a7ff8f0501c0cca268f55241d57ed7b6b6fac3 (patch) | |
tree | c46f24ddd026883c721c5b11672e23135d95056d /libavformat/mpegtsenc.c | |
parent | f591b7b5265fcf29dad12c4995ee43b0e3d594e7 (diff) | |
download | ffmpeg-77a7ff8f0501c0cca268f55241d57ed7b6b6fac3.tar.gz |
lavf/mpegtsenc: Define service_type "HEVC digital television service".
Fixes ticket #5455.
Diffstat (limited to 'libavformat/mpegtsenc.c')
-rw-r--r-- | libavformat/mpegtsenc.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libavformat/mpegtsenc.c b/libavformat/mpegtsenc.c index d8927b7a8a..f33351f14e 100644 --- a/libavformat/mpegtsenc.c +++ b/libavformat/mpegtsenc.c @@ -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 }, |