summaryrefslogtreecommitdiff
path: root/libavfilter/vf_delogo.c
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2015-09-08 23:49:48 +0200
committerClément Bœsch <u@pkh.me>2015-09-08 23:49:48 +0200
commitee4f0ec0cd33ed8d3fff34d840283db1e9bb77b9 (patch)
tree826cbec3e9715538951cb57cbe78bd501f0f8d0d /libavfilter/vf_delogo.c
parent96dbc5bdf9f5f2c42f0299760513d9e12869bbb7 (diff)
avfilter/delogo: use AV_OPT_TYPE_BOOL for show option
Diffstat (limited to 'libavfilter/vf_delogo.c')
-rw-r--r--libavfilter/vf_delogo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_delogo.c b/libavfilter/vf_delogo.c
index 50a548b83c..fa5e227c4a 100644
--- a/libavfilter/vf_delogo.c
+++ b/libavfilter/vf_delogo.c
@@ -163,7 +163,7 @@ static const AVOption delogo_options[]= {
{ "h", "set logo height", OFFSET(h), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, FLAGS },
{ "band", "set delogo area band size", OFFSET(band), AV_OPT_TYPE_INT, { .i64 = 4 }, 1, INT_MAX, FLAGS },
{ "t", "set delogo area band size", OFFSET(band), AV_OPT_TYPE_INT, { .i64 = 4 }, 1, INT_MAX, FLAGS },
- { "show", "show delogo area", OFFSET(show), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, FLAGS },
+ { "show", "show delogo area", OFFSET(show), AV_OPT_TYPE_BOOL,{ .i64 = 0 }, 0, 1, FLAGS },
{ NULL }
};