diff options
author | Paul B Mahol <onemda@gmail.com> | 2018-11-10 22:06:13 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2018-11-10 22:08:42 +0100 |
commit | c47b48c0a629d65cd15e1d3869fbfbb9ee2ceafc (patch) | |
tree | 9bc3fb25a700825a774b9db4016d23a594ccb3f6 /doc/filters.texi | |
parent | 0bc2326b90a7447b040c74f210a4d0ddb7d458d5 (diff) | |
download | ffmpeg-streaming-c47b48c0a629d65cd15e1d3869fbfbb9ee2ceafc.zip ffmpeg-streaming-c47b48c0a629d65cd15e1d3869fbfbb9ee2ceafc.tar.gz |
avfilter/vf_lut3d: add spline 1D interpolation
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index d16a8b8..fb1dd8f 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -11442,8 +11442,12 @@ Available values are: Use values from the nearest defined point. @item linear Interpolate values using the linear interpolation. +@item cosine +Interpolate values using the cosine interpolation. @item cubic Interpolate values using the cubic interpolation. +@item spline +Interpolate values using the spline interpolation. @end table @end table |