summaryrefslogtreecommitdiffstats
path: root/libavfilter/vf_deband.c
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2015-09-06 19:30:07 +0200
committerClément Bœsch <u@pkh.me>2015-09-08 22:39:24 +0200
commit2f4e2356bc310625bd90a3db9f9a17d82862cf91 (patch)
tree4493887de2d7e16156cb52778eb7120e08b1ec06 /libavfilter/vf_deband.c
parent266997504deaf6eeb64979361fb681f61682693e (diff)
downloadffmpeg-streaming-2f4e2356bc310625bd90a3db9f9a17d82862cf91.zip
ffmpeg-streaming-2f4e2356bc310625bd90a3db9f9a17d82862cf91.tar.gz
avfilter/deband: use AV_OPT_TYPE_BOOL
Diffstat (limited to 'libavfilter/vf_deband.c')
-rw-r--r--libavfilter/vf_deband.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_deband.c b/libavfilter/vf_deband.c
index 3689721..f25cbdd 100644
--- a/libavfilter/vf_deband.c
+++ b/libavfilter/vf_deband.c
@@ -58,7 +58,7 @@ static const AVOption deband_options[] = {
{ "r", "set range", OFFSET(range), AV_OPT_TYPE_INT, {.i64=16}, INT_MIN, INT_MAX, FLAGS },
{ "direction", "set direction", OFFSET(direction), AV_OPT_TYPE_FLOAT, {.dbl=2*M_PI},-2*M_PI, 2*M_PI, FLAGS },
{ "d", "set direction", OFFSET(direction), AV_OPT_TYPE_FLOAT, {.dbl=2*M_PI},-2*M_PI, 2*M_PI, FLAGS },
- { "blur", "enable blur", OFFSET(blur), AV_OPT_TYPE_INT, {.i64=1}, 0, 1, FLAGS },
+ { "blur", "set blur", OFFSET(blur), AV_OPT_TYPE_BOOL, {.i64=1}, 0, 1, FLAGS },
{ NULL }
};
OpenPOWER on IntegriCloud