diff options
author | Paul B Mahol <onemda@gmail.com> | 2017-09-04 19:29:37 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2017-09-04 19:30:44 +0200 |
commit | b43cd67862467dfb8671663c1064b8d4105c4cec (patch) | |
tree | cc7c3ef09f5c32525fab52f759eb86a377763bce /doc/filters.texi | |
parent | 4705a80fb0246f6e6cc3594869dc7a54c1bbd950 (diff) | |
download | ffmpeg-b43cd67862467dfb8671663c1064b8d4105c4cec.tar.gz |
avfilter/vf_fftfilt: make it possible to evaluate expressions per frame
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 649e101876..ce3f75dbd6 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -7926,6 +7926,20 @@ Set the frequency domain weight expression for the 1st chroma plane. @item weight_V Set the frequency domain weight expression for the 2nd chroma plane. +@item eval +Set when the expressions are evaluated. + +It accepts the following values: +@table @samp +@item init +Only evaluate expressions once during the filter initialization. + +@item frame +Evaluate expressions for each incoming frame. +@end table + +Default value is @samp{init}. + The filter accepts the following variables: @item X @item Y @@ -7934,6 +7948,9 @@ The coordinates of the current sample. @item W @item H The width and height of the image. + +@item N +The number of input frame, starting from 0. @end table @subsection Examples |