diff options
author | Lou Logan <lou@lrcd.com> | 2017-03-15 18:45:12 -0800 |
---|---|---|
committer | Lou Logan <lou@lrcd.com> | 2017-03-16 11:35:41 -0800 |
commit | e7282674a505d548746a4734cbe902a9f242eb6b (patch) | |
tree | 43e34e2bfa000aea95184083b6cb420afa5497e6 | |
parent | 8286c359ad45d737201806e3fd12418db407748a (diff) | |
download | ffmpeg-e7282674a505d548746a4734cbe902a9f242eb6b.tar.gz |
lavf/mpegtsenc: clarify pcr_period unit of measurement
pcr_period is in milliseconds.
Signed-off-by: Lou Logan <lou@lrcd.com>
-rw-r--r-- | libavformat/mpegtsenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mpegtsenc.c b/libavformat/mpegtsenc.c index 0f394c5fe0..3250dde311 100644 --- a/libavformat/mpegtsenc.c +++ b/libavformat/mpegtsenc.c @@ -1945,7 +1945,7 @@ static const AVOption options[] = { { "omit_video_pes_length", "Omit the PES packet length for video packets", offsetof(MpegTSWrite, omit_video_pes_length), AV_OPT_TYPE_BOOL, { .i64 = 1 }, 0, 1, AV_OPT_FLAG_ENCODING_PARAM }, - { "pcr_period", "PCR retransmission time", + { "pcr_period", "PCR retransmission time in milliseconds", offsetof(MpegTSWrite, pcr_period), AV_OPT_TYPE_INT, { .i64 = PCR_RETRANS_TIME }, 0, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM }, { "pat_period", "PAT/PMT retransmission time limit in seconds", |