diff options
author | Paul B Mahol <onemda@gmail.com> | 2017-08-05 20:27:32 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2017-08-05 21:05:22 +0200 |
commit | 2cc56741b1f4e33c4fdb8234da31bdfc3c5c5e05 (patch) | |
tree | a331dd1964957e66a317b26a65d64290a6e9310d /doc/filters.texi | |
parent | c47491041466043a260412504f4294a2b458ebdb (diff) | |
download | ffmpeg-2cc56741b1f4e33c4fdb8234da31bdfc3c5c5e05.tar.gz |
avfilter: add floodfill filter
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 7e5a9a625a..c1d572f71a 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -8404,6 +8404,43 @@ ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.m @end example @end itemize +@section floodfill + +Flood area with values of same pixel components with another values. + +It accepts the following options: +@table @option +@item x +Set pixel x coordinate. + +@item y +Set pixel y coordinate. + +@item s0 +Set source #0 component value. + +@item s1 +Set source #1 component value. + +@item s2 +Set source #2 component value. + +@item s3 +Set source #3 component value. + +@item d0 +Set destination #0 component value. + +@item d1 +Set destination #1 component value. + +@item d2 +Set destination #2 component value. + +@item d3 +Set destination #3 component value. +@end table + @anchor{format} @section format |