From 3040666ba0d90eb4573f00ec884ad4fcd5d9303c Mon Sep 17 00:00:00 2001 From: filon Date: Sat, 4 Jan 2003 22:43:40 +0000 Subject: [PATCH] Found another 10l :-), but the filter is still broken :-( git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8788 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpcodecs/vf_lavcdeint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libmpcodecs/vf_lavcdeint.c b/libmpcodecs/vf_lavcdeint.c index 91ffe70503..eee128768c 100644 --- a/libmpcodecs/vf_lavcdeint.c +++ b/libmpcodecs/vf_lavcdeint.c @@ -90,7 +90,7 @@ config (struct vf_instance_s* vf, return 0; /* The deinterlacer will fail if this is false */ - if ((width & 1) != 0 || (height & 3) != 0) + if ((width & 3) != 0 || (height & 3) != 0) return 0; /* If we get here, the deinterlacer is guaranteed not to fail */