summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGyan Doshi <gyandoshi@gmail.com>2017-11-20 15:36:39 +0530
committerMichael Niedermayer <michael@niedermayer.cc>2017-11-28 21:42:48 +0100
commitb3cb9bd43fa33a8aaf7a63e43f8418975b3bf0de (patch)
treeec4e2df1dd8c3b6147dc9a16fba8b59da9b642a9 /doc
parent002db7d49ada290db15334b7b41fa27eb376ec5c (diff)
avfilter/drawbox: rename variable for maximum thickness
The present value name for maximum thickness is 'max' which results in a parse error of any thickness expression containing 'max(val1,val2)'. Value renamed to 'fill'. Tested locally and documented. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'doc')
-rw-r--r--doc/filters.texi5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/filters.texi b/doc/filters.texi
index 476f014ac8..4a4efc70c8 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -7142,7 +7142,8 @@ value @code{invert} is used, the box edge color is the same as the
video with inverted luma.
@item thickness, t
-The expression which sets the thickness of the box edge. Default value is @code{3}.
+The expression which sets the thickness of the box edge.
+A value of @code{fill} will create a filled box. Default value is @code{3}.
See below for the list of accepted constants.
@end table
@@ -7205,7 +7206,7 @@ drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
@item
Fill the box with pink color:
@example
-drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
+drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=fill
@end example
@item