summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2015-09-08 23:43:54 +0200
committerClément Bœsch <u@pkh.me>2015-09-08 23:43:54 +0200
commit7a29d10839f0ce5177226368c433eed422355b31 (patch)
tree2203276c3f2fbc6d1d13e457554efec93078d87f /libavfilter
parent728eff9e38e5a24e9924df60e3d88b27de338391 (diff)
avfilter/blend: use AV_OPT_TYPE_BOOL for shortest and repeatlast options
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/vf_blend.c4
1 files changed, 2 insertions, 2 deletions
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 }
};