summaryrefslogtreecommitdiffstats
path: root/libmpcodecs
diff options
context:
space:
mode:
authorfilon <filon@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-01-04 22:43:40 +0000
committerfilon <filon@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-01-04 22:43:40 +0000
commit3040666ba0d90eb4573f00ec884ad4fcd5d9303c (patch)
treeacd24cef18592bf60f4afb92e2739f9d7866e386 /libmpcodecs
parent43b0b8d4bf71f19677da3580ec2b5d11ae252dd3 (diff)
downloadmpv-3040666ba0d90eb4573f00ec884ad4fcd5d9303c.tar.bz2
mpv-3040666ba0d90eb4573f00ec884ad4fcd5d9303c.tar.xz
Found another 10l :-), but the filter is still broken :-(
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8788 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs')
-rw-r--r--libmpcodecs/vf_lavcdeint.c2
1 files changed, 1 insertions, 1 deletions
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 */