1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-20 05:42:19 +00:00

fix xv window position problem

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8768 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
attila 2003-01-04 13:11:18 +00:00
parent 27741bec6d
commit 2758feb917

View File

@ -35,7 +35,6 @@ int geometryFull(int *pwidth, int *pheight, int *xpos, int *ypos, int scrw, int
sscanf(vo_geometry, "%i%%:%i%%", &xper, &yper) != 2 &&
sscanf(vo_geometry, "%i%%", &xper) != 1)
return geometry_error();
}
if(xper >= 0 && xper <= 100) xoff = (scrw - vidw) * ((float)xper / 100.0);
if(yper >= 0 && yper <= 100) yoff = (scrh - vidh) * ((float)yper / 100.0);
@ -50,6 +49,7 @@ int geometryFull(int *pwidth, int *pheight, int *xpos, int *ypos, int scrw, int
if(ypos) *ypos = yoff;
if(pwidth) *pwidth = width;
if(pheight) *pheight = height;
}
return 1;
}