summaryrefslogtreecommitdiffstats
path: root/player/command.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-07-07 15:19:40 +0200
committerwm4 <wm4@nowhere>2015-07-07 15:19:40 +0200
commit0ebf5979d10388e8ac226d17aca4a4067ddbdbb1 (patch)
tree3aba023dab4ee2c1f34e6334db3e849903c37f24 /player/command.c
parent25755f5fe75ad2a4ac9fb4ecf70f7bdf7a58a04c (diff)
downloadmpv-0ebf5979d10388e8ac226d17aca4a4067ddbdbb1.tar.bz2
mpv-0ebf5979d10388e8ac226d17aca4a4067ddbdbb1.tar.xz
command: make deinterlace property use interlaced-only yadif mode
Diffstat (limited to 'player/command.c')
-rw-r--r--player/command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/player/command.c b/player/command.c
index ac403fb50d..e961a79866 100644
--- a/player/command.c
+++ b/player/command.c
@@ -2125,7 +2125,7 @@ static int probe_deint_filters(struct MPContext *mpctx)
if (check_output_format(mpctx, IMGFMT_VAAPI) &&
probe_deint_filter(mpctx, "vavpp"))
return 0;
- if (probe_deint_filter(mpctx, "yadif"))
+ if (probe_deint_filter(mpctx, "yadif:interlaced-only=yes"))
return 0;
return -1;
}