# HG changeset patch # User faust3 # Date 1095358097 0 # Node ID 0afa7253462dbc6b2dedb3ded8ea5d01d59d1e56 # Parent 30f18f2e16535fc21d1d2e5c247507876b452b88 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. diff -r 30f18f2e1653 -r 0afa7253462d libvo/vo_cvidix.c --- a/libvo/vo_cvidix.c Thu Sep 16 11:00:37 2004 +0000 +++ b/libvo/vo_cvidix.c Thu Sep 16 18:08:17 2004 +0000 @@ -47,7 +47,7 @@ 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;