summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorfaust3 <faust3@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-09-16 18:08:17 +0000
committerfaust3 <faust3@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-09-16 18:08:17 +0000
commitd32a38dfed1f2a6fbb834fa932414685db88de34 (patch)
tree63068d86cf9f7733da83105cb5d1d1fb111fbcde /libvo
parentadf2ed95d7989e3361b4f1926d3fd0494ab27ba0 (diff)
downloadmpv-d32a38dfed1f2a6fbb834fa932414685db88de34.tar.bz2
mpv-d32a38dfed1f2a6fbb834fa932414685db88de34.tar.xz
Changed the default again so that the initial video position is in
the upper left corner like in vo fbdev[2]. Reason: vo cvidix does not know the screen resolution unlike you specify it with screen[w/h], resulting in the video being displayed on a random position. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13356 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_cvidix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/vo_cvidix.c b/libvo/vo_cvidix.c
index 3cf20a35a3..d45d0e046b 100644
--- a/libvo/vo_cvidix.c
+++ b/libvo/vo_cvidix.c
@@ -47,7 +47,7 @@ static vidix_grkey_t gr_key;
static uint32_t setup_vidix(){
int x=vo_dx,y=vo_dy;
aspect(&vo_dwidth,&vo_dheight,vo_fs ? A_ZOOM : A_NOZOOM);
- if(!vo_geometry || vo_fs){
+ if(vo_fs){
if(vo_dwidth <= vo_screenwidth)x = (vo_screenwidth - vo_dwidth)/2;
else x=0;
if(vo_dheight <= vo_screenheight)y = (vo_screenheight - vo_dheight)/2;