diff options
author | Paul B Mahol <onemda@gmail.com> | 2021-10-26 12:34:30 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2021-10-27 11:29:29 +0200 |
commit | 97b5b9dbea2fd51861218416dafc46984e286826 (patch) | |
tree | 679fd29d6998e128cd69497119f4d07134356483 /doc/filters.texi | |
parent | 069f7831a2bd1545080121fb6d0773191cd61d70 (diff) | |
download | ffmpeg-97b5b9dbea2fd51861218416dafc46984e286826.tar.gz |
avfilter: split negate filter from lut filter
Using luts for negating is suboptimal.
FATE test changes because filter no longer clips values into limited color range.
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 93eadda45d..90e805279c 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -15551,6 +15551,19 @@ Negate (invert) the input video. It accepts the following option: @table @option +@item components +Set components to negate. + +Available values for components are: +@table @samp +@item y +@item u +@item v +@item a +@item r +@item g +@item b +@end table @item negate_alpha With value 1, it negates the alpha component, if present. Default value is 0. |