summaryrefslogtreecommitdiff
path: root/libavfilter/vf_bwdif.c
diff options
context:
space:
mode:
authorThomas Mundt <loudmax@yahoo.de>2016-06-19 21:19:33 +0200
committerJames Almer <jamrial@gmail.com>2016-06-19 17:02:09 -0300
commit8b7b52c863f06bcf7d2fd54c78fa1390a21406e4 (patch)
tree4a8f2c4abc0fe3ab8202071a7e40c2d4c6f5eda7 /libavfilter/vf_bwdif.c
parentfd1d84bcf6f43b28c4658d6e3f6ded08094e8867 (diff)
downloadffmpeg-8b7b52c863f06bcf7d2fd54c78fa1390a21406e4.tar.gz
avfilter/vf_bwdif: Change default to deinterlace all frames
Signed-off-by: Thomas Mundt <loudmax@yahoo.de> Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavfilter/vf_bwdif.c')
-rw-r--r--libavfilter/vf_bwdif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_bwdif.c b/libavfilter/vf_bwdif.c
index d402aa4f8b..595b82586c 100644
--- a/libavfilter/vf_bwdif.c
+++ b/libavfilter/vf_bwdif.c
@@ -543,7 +543,7 @@ static const AVOption bwdif_options[] = {
CONST("bff", "assume bottom field first", BWDIF_PARITY_BFF, "parity"),
CONST("auto", "auto detect parity", BWDIF_PARITY_AUTO, "parity"),
- { "deint", "specify which frames to deinterlace", OFFSET(deint), AV_OPT_TYPE_INT, {.i64=BWDIF_DEINT_INTERLACED}, 0, 1, FLAGS, "deint" },
+ { "deint", "specify which frames to deinterlace", OFFSET(deint), AV_OPT_TYPE_INT, {.i64=BWDIF_DEINT_ALL}, 0, 1, FLAGS, "deint" },
CONST("all", "deinterlace all frames", BWDIF_DEINT_ALL, "deint"),
CONST("interlaced", "only deinterlace frames marked as interlaced", BWDIF_DEINT_INTERLACED, "deint"),