summaryrefslogtreecommitdiffstats
path: root/libvo/vo_xmga.c
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-05-14 19:36:21 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-05-14 19:36:21 +0000
commitae2eafeb554f6dd69697ae937cc8b7ec0b1652de (patch)
tree517a0d1a5bfd9a82e8a0bc361526855b152e20dd /libvo/vo_xmga.c
parent6fd578b711574ba6710ab26ebad6db69f3bddd9c (diff)
downloadmpv-ae2eafeb554f6dd69697ae937cc8b7ec0b1652de.tar.bz2
mpv-ae2eafeb554f6dd69697ae937cc8b7ec0b1652de.tar.xz
do aspect correction of video size before calculating vo_dx and vo_dy.
fixes misplaced video e.g. with -aspect 0.3 (window is not centered but near left border) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18510 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/vo_xmga.c')
-rw-r--r--libvo/vo_xmga.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libvo/vo_xmga.c b/libvo/vo_xmga.c
index 31934fdaa3..abf37b3bff 100644
--- a/libvo/vo_xmga.c
+++ b/libvo/vo_xmga.c
@@ -134,6 +134,7 @@ static int config(uint32_t width, uint32_t height, uint32_t d_width,
vo_panscan_x = vo_panscan_y = vo_panscan_amount = 0;
+ aspect(&d_width, &d_height, A_NOZOOM);
vo_dx = (vo_screenwidth - d_width) / 2;
vo_dy = (vo_screenheight - d_height) / 2;
geometry(&vo_dx, &vo_dy, &d_width, &d_height, vo_screenwidth,
@@ -171,8 +172,6 @@ static int config(uint32_t width, uint32_t height, uint32_t d_width,
inited = 1;
- aspect(&d_width, &d_height, A_NOZOOM);
-
#ifdef HAVE_NEW_GUI
if (use_gui)
guiGetEvent(guiSetShVideo, 0); // the GUI will set up / resize the window