diff options
author | Paul B Mahol <onemda@gmail.com> | 2018-08-23 09:34:44 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2018-09-07 21:44:03 +0200 |
commit | c4cda4eb878affb89c031fa7e0cc3349c9a502cd (patch) | |
tree | e2415ee26c5cf11f0442c5c8acef9954f09fe608 /doc/filters.texi | |
parent | 037b3bd14a8d6ffe4cecd0875bfb021b6edfc2a4 (diff) | |
download | ffmpeg-c4cda4eb878affb89c031fa7e0cc3349c9a502cd.tar.gz |
avfilter: add lut1d filter
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 32c95b591c..37e79d34e1 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -10962,6 +10962,37 @@ Set maximal size in number of frames. Default is 0. Set first frame of loop. Default is 0. @end table +@section lut1d + +Apply a 1D LUT to an input video. + +The filter accepts the following options: + +@table @option +@item file +Set the 1D LUT file name. + +Currently supported formats: +@table @samp +@item cube +Iridas +@end table + +@item interp +Select interpolation mode. + +Available values are: + +@table @samp +@item nearest +Use values from the nearest defined point. +@item linear +Interpolate values using the linear interpolation. +@item cubic +Interpolate values using the cubic interpolation. +@end table +@end table + @anchor{lut3d} @section lut3d |