[Mplayer-cvslog] CVS: main/libmpcodecs vf_lavcdeint.c,1.5,1.6

Filip Kalinski CVS filon at mplayerhq.hu
Sat Jan 4 23:43:43 CET 2003


Update of /cvsroot/mplayer/main/libmpcodecs
In directory mail:/var/tmp.root/cvs-serv14360/libmpcodecs

Modified Files:
	vf_lavcdeint.c 
Log Message:
Found another 10l :-), but the filter is still broken :-(


Index: vf_lavcdeint.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vf_lavcdeint.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- vf_lavcdeint.c	11 Dec 2002 21:24:45 -0000	1.5
+++ vf_lavcdeint.c	4 Jan 2003 22:43:40 -0000	1.6
@@ -90,7 +90,7 @@
     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 */



More information about the MPlayer-cvslog mailing list