diff options
author | Gyan Doshi <ffmpeg@gyani.pro> | 2022-01-12 20:39:59 +0530 |
---|---|---|
committer | Gyan Doshi <ffmpeg@gyani.pro> | 2022-01-16 10:46:38 +0530 |
commit | bca30570d28bbaa07badadabf55ec3589201a82f (patch) | |
tree | e9890dd898aa6c36685749f5d097f86e07b77fdb /doc | |
parent | b1ef5882e35d1a95e9c4838d0933084773055345 (diff) | |
download | ffmpeg-bca30570d28bbaa07badadabf55ec3589201a82f.tar.gz |
avformat/mpegts: add option max_packet_size
Makes maximum size of emitted packet user-tunable.
Default is existing 204800 bytes.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/demuxers.texi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/demuxers.texi b/doc/demuxers.texi index 26ae768d7a..238b8e03a8 100644 --- a/doc/demuxers.texi +++ b/doc/demuxers.texi @@ -775,6 +775,10 @@ disabled). Default value is -1. @item merge_pmt_versions Re-use existing streams when a PMT's version is updated and elementary streams move to different PIDs. Default value is 0. + +@item max_packet_size +Set maximum size, in bytes, of packet emitted by the demuxer. Payloads above this size +are split across multiple packets. Range is 1 to INT_MAX/2. Default is 204800 bytes. @end table @section mpjpeg |