diff options
author | Paul B Mahol <onemda@gmail.com> | 2022-04-12 09:08:11 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2022-04-14 22:37:21 +0200 |
commit | 391ce570c8a3417b3ecfcf8466815b036ffd57ee (patch) | |
tree | c37e3cac02bf74101e7cc06906d1c2da41eb0d59 /doc/filters.texi | |
parent | 7e8129548850096583d7ef69fc94948447095f9f (diff) | |
download | ffmpeg-391ce570c8a3417b3ecfcf8466815b036ffd57ee.tar.gz |
avfilter: add pixelize video filter
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 71a04baee5..a161754233 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -17863,6 +17863,35 @@ format=monow, pixdesctest can be used to test the monowhite pixel format descriptor definition. +@section pixelize +Apply pixelization to video stream. + +The filter accepts the following options: +@table @option +@item width, w +@item height, h +Set block dimensions that will be used for pixelization. +Default value is @code{16}. + +@item mode, m +Set the mode of pixelization used. + +Possible values are: +@table @samp +@item avg +@item min +@item max +@end table +Default value is @code{avg}. + +@item planes, p +Set what planes to filter. Default is to filter all planes. +@end table + +@subsection Commands + +This filter supports all options as @ref{commands}. + @section pixscope Display sample values of color channels. Mainly useful for checking color |