# HG changeset patch # User reimar # Date 1165139995 0 # Node ID 862b3942429c1f3b6ac3900cd6232fdd83bc2fae # Parent f95a872702d50c8c9959e60e6cb84454f703de73 100l typo in 21380 disabled OSD with at least xvmc. Patch by Andrew Cohen [cohen bu edu] diff -r f95a872702d5 -r 862b3942429c libvo/sub.c --- a/libvo/sub.c Sun Dec 03 06:38:45 2006 +0000 +++ b/libvo/sub.c Sun Dec 03 09:59:55 2006 +0000 @@ -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;