diff options
author | Clément Bœsch <u@pkh.me> | 2015-09-08 23:49:48 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2015-09-08 23:49:48 +0200 |
commit | ee4f0ec0cd33ed8d3fff34d840283db1e9bb77b9 (patch) | |
tree | 826cbec3e9715538951cb57cbe78bd501f0f8d0d /libavfilter | |
parent | 96dbc5bdf9f5f2c42f0299760513d9e12869bbb7 (diff) | |
download | ffmpeg-ee4f0ec0cd33ed8d3fff34d840283db1e9bb77b9.tar.gz |
avfilter/delogo: use AV_OPT_TYPE_BOOL for show option
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_delogo.c | 2 |
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 } }; |