PR #23366 opened by Mia Herkt (mia-0) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/23366 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/23366.patch
This is more concise and easier to read, IMO. >From 2ab9b14649bd7fc5ceebfbfdc3d8148f7bb8e6bf Mon Sep 17 00:00:00 2001 From: Mia Herkt <[email protected]> Date: Fri, 5 Jun 2026 16:01:12 +0200 Subject: [PATCH] doc: reword `mapping` option of vf_mergeplanes --- doc/filters.texi | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/doc/filters.texi b/doc/filters.texi index 2cae41c7c5..8a5782268e 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -18180,14 +18180,11 @@ This filter accepts the following options: @item mapping Set input to output plane mapping. Default is @code{0}. -The mappings is specified as a bitmap. It should be specified as a -hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the -mapping for the first plane of the output stream. 'A' sets the number of -the input stream to use (from 0 to 3), and 'a' the plane number of the -corresponding input to use (from 0 to 3). The rest of the mappings is -similar, 'Bb' describes the mapping for the output stream second -plane, 'Cc' describes the mapping for the output stream third plane and -'Dd' describes the mapping for the output stream fourth plane. +The option takes a bitmap representation. It can be specified as a hexadecimal +number of the form @code{0xAa[Bb[Cc[Dd]]]}, with each pair of digits denoting, +from left to right and starting at 0, the input stream number and plane number +for each output plane, i.e., @code{Aa} is input stream @code{A} and plane @code{a} +for output plane 0. @item format Set output pixel format. Default is @code{yuva444p}. -- 2.52.0 _______________________________________________ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]
