summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf_lavcdeint.c
diff options
context:
space:
mode:
Diffstat (limited to 'libmpcodecs/vf_lavcdeint.c')
-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 */