diff options
author | Paul B Mahol <onemda@gmail.com> | 2019-05-03 14:08:49 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2019-05-14 14:43:56 +0200 |
commit | 8ef163ba9e3d2d7cb31856c33f86439e234fe623 (patch) | |
tree | ee0cd2217a1e2336df7a388818ab0d3261395c7f /doc/filters.texi | |
parent | 87a54e150e9cb6479e590faaf66d9f405a97fb6c (diff) | |
download | ffmpeg-8ef163ba9e3d2d7cb31856c33f86439e234fe623.tar.gz |
avfilter: add xmedian filter
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 0683f7bff5..697ffcb921 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -18418,6 +18418,20 @@ Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for Default is @code{3}. @end table +@section xmedian +Pick median pixels from several input videos. + +The filter accept the following options: + +@table @option +@item nb_inputs +Set number of inputs. This must be odd number. +Default is 3. Allowed range is from 3 to 255. + +@item planes +Set which planes to filter. Default value is @code{15}, by which all planes are processed. +@end table + @section xstack Stack video inputs into custom layout. |