ffmpeg | branch: master | Clément Bœsch <u...@pkh.me> | Tue Sep 8 23:43:54 2015 +0200| [7a29d10839f0ce5177226368c433eed422355b31] | committer: Clément Bœsch
avfilter/blend: use AV_OPT_TYPE_BOOL for shortest and repeatlast options > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7a29d10839f0ce5177226368c433eed422355b31 --- libavfilter/vf_blend.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavfilter/vf_blend.c b/libavfilter/vf_blend.c index 5901ffa..be92bd1 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 } }; _______________________________________________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog