summaryrefslogtreecommitdiff
path: root/doc/filters.texi
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-02-25 21:21:29 +0100
committerAnton Khirnov <anton@khirnov.net>2013-04-09 19:00:26 +0200
commit62dcdb028cc84845fd263bb09304c4c6500bda7a (patch)
tree438df9aa541fd8add8162a635dae90a74fee103e /doc/filters.texi
parent2831b307e65f89639ab61848d5c5d39001b22702 (diff)
vf_blackframe: switch to an AVOptions-based system.
Diffstat (limited to 'doc/filters.texi')
-rw-r--r--doc/filters.texi18
1 files changed, 10 insertions, 8 deletions
diff --git a/doc/filters.texi b/doc/filters.texi
index 022c98468f..c878472c83 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -533,16 +533,18 @@ the position in the file if known or -1 and the timestamp in seconds.
In order to display the output lines, you need to set the loglevel at
least to the AV_LOG_INFO value.
-The filter accepts the syntax:
-@example
-blackframe[=@var{amount}:[@var{threshold}]]
-@end example
+The filter accepts the following options:
+
+@table @option
+
+@item amount
+The percentage of the pixels that have to be below the threshold, defaults to
+98.
-@var{amount} is the percentage of the pixels that have to be below the
-threshold, and defaults to 98.
+@item threshold
+Threshold below which a pixel value is considered black, defaults to 32.
-@var{threshold} is the threshold below which a pixel value is
-considered black, and defaults to 32.
+@end table
@section boxblur