summaryrefslogtreecommitdiff
path: root/libavfilter/vf_drawbox.c
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 /libavfilter/vf_drawbox.c
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 'libavfilter/vf_drawbox.c')
-rw-r--r--libavfilter/vf_drawbox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_drawbox.c b/libavfilter/vf_drawbox.c
index 88bb9ae5c0..d351846594 100644
--- a/libavfilter/vf_drawbox.c
+++ b/libavfilter/vf_drawbox.c
@@ -47,7 +47,7 @@ static const char *const var_names[] = {
"h", ///< height of the rendered box
"w", ///< width of the rendered box
"t",
- "max",
+ "fill",
NULL
};