[MPlayer-cvslog] r21459 - trunk/libvo/sub.c

reimar subversion at mplayerhq.hu
Sun Dec 3 10:59:55 CET 2006


Author: reimar
Date: Sun Dec  3 10:59:55 2006
New Revision: 21459

Modified:
   trunk/libvo/sub.c

Log:
100l typo in 21380 disabled OSD with at least xvmc.
Patch by Andrew Cohen [cohen bu edu]


Modified: trunk/libvo/sub.c
==============================================================================
--- trunk/libvo/sub.c	(original)
+++ trunk/libvo/sub.c	Sun Dec  3 10:59:55 2006
@@ -1006,7 +1006,7 @@
 	if(obj->flags&OSDFLAG_VISIBLE){
 	    if(	(obj->bbox.x1<=x2 && obj->bbox.x2>=x1) &&
 		(obj->bbox.y1<=y2 && obj->bbox.y2>=y1) &&
-		obj->bbox.y2 > obj->bbox.y1 && obj->bbox.x1 > obj->bbox.x2
+		obj->bbox.y2 > obj->bbox.y1 && obj->bbox.x2 > obj->bbox.x1
 		) return 1;
 	}
 	obj=obj->next;



More information about the MPlayer-cvslog mailing list