PR #23494 opened by Bogdan Lisman (bogdanpydev) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/23494 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/23494.patch
The mpegts demuxer's skip_changes and skip_clear options were not documented. Add them to the mpegts section. Signed-off-by: Bogdan Lisman <[email protected]> # Summary of changes Briefly describe what this PR does and why. <!-- If this PR requires new FATE test samples, attach them to the PR and list their target paths below (relative to the fate-suite root). Attached filenames must match the sample's filename: ```fate-samples # e.g. vorbis/new-sample.ogg ``` --> >From 8e0c6ed3f8064e8e135e109f94549eee46fb2d33 Mon Sep 17 00:00:00 2001 From: Bogdan Lisman <[email protected]> Date: Sun, 14 Jun 2026 23:22:32 +0300 Subject: [PATCH] doc/demuxers: document mpegts skip_changes and skip_clear options The mpegts demuxer's skip_changes and skip_clear options were not documented. Add them to the mpegts section. Signed-off-by: Bogdan Lisman <[email protected]> --- doc/demuxers.texi | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/demuxers.texi b/doc/demuxers.texi index a1dd879b59..d452e6fc19 100644 --- a/doc/demuxers.texi +++ b/doc/demuxers.texi @@ -1006,6 +1006,12 @@ disabled). Default value is -1. Reuse existing streams when a PMT's version is updated and elementary streams move to different PIDs. Default value is 0. +@item skip_changes +Skip changing or adding streams and programs. Default value is 0. + +@item skip_clear +Skip clearing programs. 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. -- 2.52.0 _______________________________________________ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]
