[FFmpeg-cvslog] mpegtsenc: Lift limit on PMT PID
Loren Osborn
git at videolan.org
Fri Nov 4 20:49:16 CET 2011
ffmpeg | branch: release/0.7 | Loren Osborn <losborn at fwm.tv> | Mon Oct 3 16:03:29 2011 +0200| [b981c5d4e0f0dd26fd1c03d70a38aef85d6131bc] | committer: Michael Niedermayer
mpegtsenc: Lift limit on PMT PID
Fixes Ticket518
(cherry picked from commit bf5c3bac51e422580aad011fcd927c818542f054)
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b981c5d4e0f0dd26fd1c03d70a38aef85d6131bc
---
libavformat/mpegtsenc.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavformat/mpegtsenc.c b/libavformat/mpegtsenc.c
index 7e96472..32dedfb 100644
--- a/libavformat/mpegtsenc.c
+++ b/libavformat/mpegtsenc.c
@@ -84,7 +84,7 @@ static const AVOption options[] = {
{ "mpegts_service_id", "Set service_id field.",
offsetof(MpegTSWrite, service_id), FF_OPT_TYPE_INT, {.dbl = 0x0001 }, 0x0001, 0xffff, AV_OPT_FLAG_ENCODING_PARAM},
{ "mpegts_pmt_start_pid", "Set the first pid of the PMT.",
- offsetof(MpegTSWrite, pmt_start_pid), FF_OPT_TYPE_INT, {.dbl = 0x1000 }, 0x1000, 0x1f00, AV_OPT_FLAG_ENCODING_PARAM},
+ offsetof(MpegTSWrite, pmt_start_pid), FF_OPT_TYPE_INT, {.dbl = 0x1000 }, 0x0010, 0x1f00, AV_OPT_FLAG_ENCODING_PARAM},
{ "mpegts_start_pid", "Set the first pid.",
offsetof(MpegTSWrite, start_pid), FF_OPT_TYPE_INT, {.dbl = 0x0100 }, 0x0100, 0x0f00, AV_OPT_FLAG_ENCODING_PARAM},
{ NULL },
More information about the ffmpeg-cvslog
mailing list