summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-02-26 00:43:54 +0100
committerwm4 <wm4@nowhere>2013-02-26 01:55:40 +0100
commit65eeebab13dd97dc90390f35a2a0bbebaaded2ce (patch)
tree6fa77d58796933e8f3bb5163b612caed11575d38 /video
parent4801c3c62ce4c44671ea01d4007a9641129522b7 (diff)
downloadmpv-65eeebab13dd97dc90390f35a2a0bbebaaded2ce.tar.bz2
mpv-65eeebab13dd97dc90390f35a2a0bbebaaded2ce.tar.xz
vf_yadif: remove dead code
Commit 2e1063d changed the option parsing, and args is always NULL now.
Diffstat (limited to 'video')
-rw-r--r--video/filter/vf_yadif.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/video/filter/vf_yadif.c b/video/filter/vf_yadif.c
index d0c3bbe08b..39e45e7e19 100644
--- a/video/filter/vf_yadif.c
+++ b/video/filter/vf_yadif.c
@@ -508,8 +508,6 @@ static int vf_open(vf_instance_t *vf, char *args){
vf->priv->parity= -1;
- if (args) sscanf(args, "%d:%d", &vf->priv->mode, &vf->priv->parity);
-
filter_line = filter_line_c;
#if HAVE_MMX
if(gCpuCaps.hasMMX2) filter_line = filter_line_mmx2;