summaryrefslogtreecommitdiff
path: root/libavformat/mpegtsenc.c
diff options
context:
space:
mode:
authorSylvain Laurent <syllaur@gmail.com>2016-09-24 12:01:34 +0200
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2016-09-28 17:29:11 +0200
commit58776ccbdb4d2e5f07d1d0fe12a1529cffe949c0 (patch)
treeabf6cdd71bd36a482d180afd065d2c0679a4b94f /libavformat/mpegtsenc.c
parentc03b9d6a62db4e45119e1170e83f26df1fba36df (diff)
lavf/mpegtsenc: Set min PID for data pkt to 0x0010.
Fixes ticket #1673.
Diffstat (limited to 'libavformat/mpegtsenc.c')
-rw-r--r--libavformat/mpegtsenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mpegtsenc.c b/libavformat/mpegtsenc.c
index fd849e5b36..c10a3bfed2 100644
--- a/libavformat/mpegtsenc.c
+++ b/libavformat/mpegtsenc.c
@@ -1843,7 +1843,7 @@ static const AVOption options[] = {
{ .i64 = 0x1000 }, 0x0010, 0x1f00, AV_OPT_FLAG_ENCODING_PARAM },
{ "mpegts_start_pid", "Set the first pid.",
offsetof(MpegTSWrite, start_pid), AV_OPT_TYPE_INT,
- { .i64 = 0x0100 }, 0x0020, 0x0f00, AV_OPT_FLAG_ENCODING_PARAM },
+ { .i64 = 0x0100 }, 0x0010, 0x0f00, AV_OPT_FLAG_ENCODING_PARAM },
{ "mpegts_m2ts_mode", "Enable m2ts mode.",
offsetof(MpegTSWrite, m2ts_mode), AV_OPT_TYPE_BOOL,
{ .i64 = -1 }, -1, 1, AV_OPT_FLAG_ENCODING_PARAM },