summaryrefslogtreecommitdiff
path: root/libavfilter/vf_kerndeint.c
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2015-09-06 19:23:27 +0200
committerClément Bœsch <u@pkh.me>2015-09-08 22:39:24 +0200
commitae32c9916d5b7cb000565f9b1a68fa89cd0d23e5 (patch)
treeabc051551aeb35c553e84d5fabdaa977857836bc /libavfilter/vf_kerndeint.c
parenta68d6cf5b4725d887d1455ddfe961e12ff4b6ea3 (diff)
avfilter/kerndeint: use AV_OPT_TYPE_BOOL
Diffstat (limited to 'libavfilter/vf_kerndeint.c')
-rw-r--r--libavfilter/vf_kerndeint.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_kerndeint.c b/libavfilter/vf_kerndeint.c
index 0e2417ad59..70ec2bf9d5 100644
--- a/libavfilter/vf_kerndeint.c
+++ b/libavfilter/vf_kerndeint.c
@@ -52,8 +52,8 @@ static const AVOption kerndeint_options[] = {
{ "thresh", "set the threshold", OFFSET(thresh), AV_OPT_TYPE_INT, {.i64=10}, 0, 255, FLAGS },
{ "map", "set the map", OFFSET(map), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS },
{ "order", "set the order", OFFSET(order), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS },
- { "sharp", "enable sharpening", OFFSET(sharp), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS },
- { "twoway", "enable twoway", OFFSET(twoway), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS },
+ { "sharp", "set sharpening", OFFSET(sharp), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, FLAGS },
+ { "twoway", "set twoway", OFFSET(twoway), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, FLAGS },
{ NULL }
};