[MPlayer-cvslog] r29391 - trunk/libvo/geometry.c

reimar subversion at mplayerhq.hu
Fri Jun 26 15:34:40 CEST 2009


Author: reimar
Date: Fri Jun 26 15:34:40 2009
New Revision: 29391

Log:
100l, RESET_GEOMETRY must reset values to INT_MIN, not -1, -1 is a
valid value for e.g. the offsets.
Patch by Benson Mitchell [benson mitchell gmail com]

Modified:
   trunk/libvo/geometry.c

Modified: trunk/libvo/geometry.c
==============================================================================
--- trunk/libvo/geometry.c	Thu Jun 25 22:06:03 2009	(r29390)
+++ trunk/libvo/geometry.c	Fri Jun 26 15:34:40 2009	(r29391)
@@ -30,7 +30,7 @@ char *vo_geometry = NULL;
 int geometry_wh_changed = 0;
 int geometry_xy_changed = 0;
 
-#define RESET_GEOMETRY width = height = xoff = yoff = xper = yper = -1;
+#define RESET_GEOMETRY width = height = xoff = yoff = xper = yper = INT_MIN;
 
 // xpos,ypos: position of the left upper corner
 // widw,widh: width and height of the window


More information about the MPlayer-cvslog mailing list