From 7a29d10839f0ce5177226368c433eed422355b31 Mon Sep 17 00:00:00 2001 From: Clément Bœsch Date: Tue, 8 Sep 2015 23:43:54 +0200 Subject: avfilter/blend: use AV_OPT_TYPE_BOOL for shortest and repeatlast options --- libavfilter/vf_blend.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavfilter') diff --git a/libavfilter/vf_blend.c b/libavfilter/vf_blend.c index 5901ffaa74..be92bd15be 100644 --- a/libavfilter/vf_blend.c +++ b/libavfilter/vf_blend.c @@ -153,8 +153,8 @@ typedef struct { static const AVOption blend_options[] = { COMMON_OPTIONS, - { "shortest", "force termination when the shortest input terminates", OFFSET(dinput.shortest), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS }, - { "repeatlast", "repeat last bottom frame", OFFSET(dinput.repeatlast), AV_OPT_TYPE_INT, {.i64=1}, 0, 1, FLAGS }, + { "shortest", "force termination when the shortest input terminates", OFFSET(dinput.shortest), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, FLAGS }, + { "repeatlast", "repeat last bottom frame", OFFSET(dinput.repeatlast), AV_OPT_TYPE_BOOL, {.i64=1}, 0, 1, FLAGS }, { NULL } }; -- cgit v1.2.3