summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-03-31 16:16:12 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-03-31 16:16:12 +0000
commit6b57f53f6f0a127bf8507c25ebb9be9eceff586c (patch)
treee88599532c8d1acad3f150699bd18f671a99234c
parent87eabf0a5b8c9f9e1138df33a2f12a1970c36b3b (diff)
downloadmpv-6b57f53f6f0a127bf8507c25ebb9be9eceff586c.tar.bz2
mpv-6b57f53f6f0a127bf8507c25ebb9be9eceff586c.tar.xz
Get rid of nonsensical limits on -geometry x, y,w and h values, they only
cause confusion on multi-monitor setups. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29112 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--libvo/geometry.c23
1 files changed, 8 insertions, 15 deletions
diff --git a/libvo/geometry.c b/libvo/geometry.c
index a805c147f9..7c6dc54087 100644
--- a/libvo/geometry.c
+++ b/libvo/geometry.c
@@ -20,6 +20,7 @@
#include <stdio.h>
#include <string.h>
+#include <limits.h>
#include "geometry.h"
#include "mp_msg.h"
@@ -38,7 +39,7 @@ int geometry(int *xpos, int *ypos, int *widw, int *widh, int scrw, int scrh)
{
int width, height, xoff, yoff, xper, yper;
- width = height = xoff = yoff = xper = yper = -1;
+ width = height = xoff = yoff = xper = yper = INT_MIN;
if(vo_geometry != NULL) {
if(sscanf(vo_geometry, "%ix%i+%i+%i", &width, &height, &xoff, &yoff) != 4 )
@@ -90,22 +91,14 @@ int geometry(int *xpos, int *ypos, int *widw, int *widh, int scrw, int scrh)
mp_msg(MSGT_VO, MSGL_V,"geometry window parameter: widw: %i,"
" widh: %i, scrw: %i, scrh: %i\n",*widw, *widh, scrw, scrh);
- /* FIXME: better checking of bounds... */
- if( width != -1 && (width < 0 || width > scrw))
- width = (scrw < *widw) ? scrw : *widw;
- if( height != -1 && (height < 0 || height > scrh))
- height = (scrh < *widh) ? scrh : *widh;
- if(xoff != -1 && (xoff < 0 || xoff + width > scrw)) xoff = 0;
- if(yoff != -1 && (yoff < 0 || yoff + height > scrh)) yoff = 0;
+ if (xoff != INT_MIN && xpos) *xpos = xoff;
+ if (yoff != INT_MIN && ypos) *ypos = yoff;
+ if (width > 0 && widw) *widw = width;
+ if (height > 0 && widh) *widh = height;
- if(xoff != -1 && xpos) *xpos = xoff;
- if(yoff != -1 && ypos) *ypos = yoff;
- if(width != -1 && widw) *widw = width;
- if(height != -1 && widh) *widh = height;
-
- if( width != -1 || height != -1)
+ if (width > 0 || height > 0)
geometry_wh_changed = 1;
- if( xoff != -1 || yoff != -1)
+ if (xoff != INT_MIN || yoff != INT_MIN)
geometry_xy_changed = 1;
}
return 1;