diff options
author | Paul B Mahol <onemda@gmail.com> | 2017-04-23 19:59:32 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2017-04-24 20:37:30 +0200 |
commit | dfc4ce5f5ddb7ae0934bb3ca40b99932cf3e1cb0 (patch) | |
tree | 3bb5f255a17485b027360eeba7cab2bc49b99501 /doc/filters.texi | |
parent | dd49eff93095110d2e878bbcc81b0062590d865f (diff) | |
download | ffmpeg-dfc4ce5f5ddb7ae0934bb3ca40b99932cf3e1cb0.tar.gz |
avfilter: add lumakey filter
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 4c733f016e..0ee6792926 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -9278,6 +9278,26 @@ Interpolate values using a tetrahedron. @end table @end table +@section lumakey + +Turn certain luma values into transparency. + +The filter accepts the following options: + +@table @option +@item threshold +Set the luma which will be used as base for transparency. +Default value is @code{0}. + +@item tolerance +Set the range of luma values to be keyed out. +Default value is @code{0}. + +@item softness +Set the range of softness. Default value is @code{0}. +Use this to control gradual transition from zero to full transparency. +@end table + @section lut, lutrgb, lutyuv Compute a look-up table for binding each pixel component input value |