summaryrefslogtreecommitdiffstats
path: root/libavfilter/vf_interlace.c
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2015-09-06 19:32:01 +0200
committerClément Bœsch <u@pkh.me>2015-09-08 22:39:24 +0200
commitf790b54d98be34ce45ea9e5103dcf88dbb740888 (patch)
tree09fac70f03a33a486147e64f06a31682d65166ac /libavfilter/vf_interlace.c
parent2f4e2356bc310625bd90a3db9f9a17d82862cf91 (diff)
downloadffmpeg-streaming-f790b54d98be34ce45ea9e5103dcf88dbb740888.zip
ffmpeg-streaming-f790b54d98be34ce45ea9e5103dcf88dbb740888.tar.gz
avfilter/interlace: use AV_OPT_TYPE_BOOL
Diffstat (limited to 'libavfilter/vf_interlace.c')
-rw-r--r--libavfilter/vf_interlace.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_interlace.c b/libavfilter/vf_interlace.c
index a520776..28315c3 100644
--- a/libavfilter/vf_interlace.c
+++ b/libavfilter/vf_interlace.c
@@ -46,8 +46,8 @@ static const AVOption interlace_options[] = {
AV_OPT_TYPE_CONST, {.i64 = MODE_TFF }, INT_MIN, INT_MAX, .flags = V, .unit = "scan" },
{ "bff", "bottom field first", 0,
AV_OPT_TYPE_CONST, {.i64 = MODE_BFF }, INT_MIN, INT_MAX, .flags = V, .unit = "scan" },
- { "lowpass", "enable vertical low-pass filter", OFFSET(lowpass),
- AV_OPT_TYPE_INT, {.i64 = 1 }, 0, 1, .flags = V },
+ { "lowpass", "set vertical low-pass filter", OFFSET(lowpass),
+ AV_OPT_TYPE_BOOL, {.i64 = 1 }, 0, 1, .flags = V },
{ NULL }
};
OpenPOWER on IntegriCloud