-fs aspect fix by KotH

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5321 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2002-03-24 21:22:16 +00:00
parent 6cedc58e73
commit 71c4d5006d
1 changed files with 2 additions and 0 deletions

View File

@ -80,6 +80,7 @@ static void set_window(int force_update,const vo_tune_info_t *info)
XTranslateCoordinates(mDisplay, vo_window, mRoot, 0, 0,
&drwcX, &drwcY, &mRoot);
aspect(&dwidth,&dheight,A_NOZOOM);
if (!vo_fs)
mp_msg(MSGT_VO, MSGL_V, "[xvidix] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",
drwcX, drwcY, drwX, drwY, drwWidth, drwHeight);
@ -88,6 +89,7 @@ static void set_window(int force_update,const vo_tune_info_t *info)
#if X11_FULLSCREEN
if (vo_fs)
{
aspect(&dwidth,&dheight,A_ZOOM);
drwX = (vo_screenwidth - (dwidth > vo_screenwidth ? vo_screenwidth : dwidth)) / 2;
drwcX += drwX;
drwY = (vo_screenheight - (dheight > vo_screenheight ? vo_screenheight : dheight)) / 2;