aboutsummaryrefslogtreecommitdiffstats
path: root/doc/filters.texi
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-04-10 20:48:46 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-04-10 21:09:06 +0200
commit1ee9eacaa492a0f38ae426439516574f4bfae4d9 (patch)
tree4e47716bd0c35e7c455516727cc3c76b9256a917 /doc/filters.texi
parent85f115b5d8d7d8f39d9a2934242b108f5b7c891e (diff)
parent7ed833d78ea661d619124fd898547a900f6480bc (diff)
downloadffmpeg-1ee9eacaa492a0f38ae426439516574f4bfae4d9.tar.gz
Merge commit '7ed833d78ea661d619124fd898547a900f6480bc'
* commit '7ed833d78ea661d619124fd898547a900f6480bc': vf_gradfun: switch to an AVOptions-based system. Conflicts: doc/filters.texi libavfilter/gradfun.h libavfilter/vf_gradfun.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'doc/filters.texi')
-rw-r--r--doc/filters.texi19
1 files changed, 9 insertions, 10 deletions
diff --git a/doc/filters.texi b/doc/filters.texi
index 0ac643681a..4e8fed5120 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -3412,22 +3412,21 @@ This filter is designed for playback only. Do not use it prior to
lossy compression, because compression tends to lose the dither and
bring back the bands.
-The filter accepts a list of options in the form of @var{key}=@var{value} pairs
-separated by ":". A description of the accepted options follows.
+This filter accepts the following options:
@table @option
@item strength
-The maximum amount by which the filter will change
-any one pixel. Also the threshold for detecting nearly flat
-regions. Acceptable values range from @code{0.51} to @code{64}, default value
-is @code{1.2}.
+The maximum amount by which the filter will change any one pixel. Also the
+threshold for detecting nearly flat regions. Acceptable values range from .51 to
+64, default value is 1.2, out-of-range values will be clipped to the valid
+range.
@item radius
-The neighborhood to fit the gradient to. A larger
-radius makes for smoother gradients, but also prevents the filter from
-modifying the pixels near detailed regions. Acceptable values are
-@code{8-32}, default value is @code{16}.
+The neighborhood to fit the gradient to. A larger radius makes for smoother
+gradients, but also prevents the filter from modifying the pixels near detailed
+regions. Acceptable values are 8-32, default value is 16, out-of-range values
+will be clipped to the valid range.
@end table