summaryrefslogtreecommitdiff
path: root/doc/filters.texi
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2017-09-04 19:29:37 +0200
committerPaul B Mahol <onemda@gmail.com>2017-09-04 19:30:44 +0200
commitb43cd67862467dfb8671663c1064b8d4105c4cec (patch)
treecc7c3ef09f5c32525fab52f759eb86a377763bce /doc/filters.texi
parent4705a80fb0246f6e6cc3594869dc7a54c1bbd950 (diff)
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.texi17
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