summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-08-04 17:37:07 +0200
committerwm4 <wm4@nowhere>2015-08-04 17:51:00 +0200
commit2d778181838ee9d112f8a3e7fa2dd4a42307a5be (patch)
treeaa76e53c614c0551a03fb403817f4bfdd9bc2326
parent0b1c3e8de22afc89868ad4aeb2a70738de33288c (diff)
downloadmpv-2d778181838ee9d112f8a3e7fa2dd4a42307a5be.tar.bz2
mpv-2d778181838ee9d112f8a3e7fa2dd4a42307a5be.tar.xz
command: make auto-deinterlacing output at field rate
This was requested by a user. The vdpau and vaapi deinterlacers already do this.
-rw-r--r--player/command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/player/command.c b/player/command.c
index 2c5d06cff8..71522ddba3 100644
--- a/player/command.c
+++ b/player/command.c
@@ -2128,7 +2128,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:interlaced-only=yes"))
+ if (probe_deint_filter(mpctx, "yadif:mode=field:interlaced-only=yes"))
return 0;
return -1;
}