summaryrefslogtreecommitdiffstats
path: root/libvo/vo_xvmc.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_xvmc.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_xvmc.c')
-rw-r--r--libvo/vo_xvmc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/vo_xvmc.c b/libvo/vo_xvmc.c
index c4594252f6..d8e464ded8 100644
--- a/libvo/vo_xvmc.c
+++ b/libvo/vo_xvmc.c
@@ -605,6 +605,7 @@ found_subpic:
vo_mouse_autohide = 1;
update_xinerama_info();
+ 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, vo_screenheight);
vo_dx += xinerama_x;
@@ -623,7 +624,6 @@ found_subpic:
{
hint.x = vo_dx;
hint.y = vo_dy;
- aspect(&d_width,&d_height,A_NOZOOM);
hint.width = d_width;
hint.height = d_height;
#ifdef HAVE_XF86VM