[FFmpeg-cvslog] avfilter/vf_bwdif: Change default to deinterlace all frames
Thomas Mundt
git at videolan.org
Sun Jun 19 22:04:04 CEST 2016
ffmpeg | branch: master | Thomas Mundt <loudmax at yahoo.de> | Sun Jun 19 21:19:33 2016 +0200| [8b7b52c863f06bcf7d2fd54c78fa1390a21406e4] | committer: James Almer
avfilter/vf_bwdif: Change default to deinterlace all frames
Signed-off-by: Thomas Mundt <loudmax at yahoo.de>
Signed-off-by: James Almer <jamrial at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8b7b52c863f06bcf7d2fd54c78fa1390a21406e4
---
libavfilter/version.h | 2 +-
libavfilter/vf_bwdif.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavfilter/version.h b/libavfilter/version.h
index cb9b092..1924cfe 100644
--- a/libavfilter/version.h
+++ b/libavfilter/version.h
@@ -31,7 +31,7 @@
#define LIBAVFILTER_VERSION_MAJOR 6
#define LIBAVFILTER_VERSION_MINOR 46
-#define LIBAVFILTER_VERSION_MICRO 101
+#define LIBAVFILTER_VERSION_MICRO 102
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
LIBAVFILTER_VERSION_MINOR, \
diff --git a/libavfilter/vf_bwdif.c b/libavfilter/vf_bwdif.c
index d402aa4..595b825 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"),
More information about the ffmpeg-cvslog
mailing list