# HG changeset patch # User atmos4 # Date 1002123111 0 # Node ID f5146118777e8ecda294a3eed69f952fd1ff0ce4 # Parent a74a82334f60dc918874d7f8578fe295cbbab565 Simplified aspect() for the loss of some functionality to get ansi compatibility. diff -r a74a82334f60 -r f5146118777e libvo/aspect.c --- a/libvo/aspect.c Wed Oct 03 14:53:15 2001 +0000 +++ b/libvo/aspect.c Wed Oct 03 15:31:51 2001 +0000 @@ -1,5 +1,4 @@ /* Stuff for correct aspect scaling. */ -#include "aspect.h" float monitor_aspect=4.0/3.0; @@ -7,26 +6,20 @@ * resolution, that the scaled image should fit into */ -rect_t aspect(int srcw, int srch, int fitinw, int fitinh){ - rect_t r,z; - r.w=fitinw; - r.x=0; - r.h=(int)(((float)fitinw / (float)srcw * (float)srch) +void aspect(int *srcw, int *srch, int fitinw, int fitinh){ + int srcwcp, srchcp; + srcwcp=*srcw; srchcp=*srch; + *srcw=fitinw; + *srch=(int)(((float)fitinw / (float)srcwcp * (float)srchcp) * ((float)fitinh/((float)fitinw/monitor_aspect))); - r.h+=r.h%2; // round - r.y=(fitinh-r.h)/2; - z=r; - //printf("aspect rez x: %d y: %d wh: %dx%d\n",r.x,r.y,r.w,r.h); - if(r.h>fitinh || r.hfitinh || *srchfitinw) r=z; - //printf("aspect ret x: %d y: %d wh: %dx%d\n",r.x,r.y,r.w,r.h); - return r; + //printf("aspect ret wh: %dx%d\n",*srcw,*srch); } diff -r a74a82334f60 -r f5146118777e libvo/aspect.h --- a/libvo/aspect.h Wed Oct 03 14:53:15 2001 +0000 +++ b/libvo/aspect.h Wed Oct 03 15:31:51 2001 +0000 @@ -2,14 +2,7 @@ #define __ASPECT_H /* Stuff for correct aspect scaling. */ -typedef struct { - int x; /* x,y starting coordinate */ - int y; /* of upper left corner */ - int w; /* width */ - int h; /* height */ -} rect_t; - -rect_t aspect(int srcw, int srch, int fitinw, int fitinh); +void aspect(int *srcw, int *srch, int fitinw, int fitinh); #endif diff -r a74a82334f60 -r f5146118777e libvo/vo_xv.c --- a/libvo/vo_xv.c Wed Oct 03 14:53:15 2001 +0000 +++ b/libvo/vo_xv.c Wed Oct 03 15:31:51 2001 +0000 @@ -121,7 +121,6 @@ static uint32_t init(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint32_t flags, char *title, uint32_t format) { // int screen; -// int myx,myy; char *hello = (title == NULL) ? "Xv render" : title; // char *name = ":0.0"; XSizeHints hint; @@ -169,9 +168,8 @@ */ { - rect_t newres = aspect(d_width,d_height,vo_screenwidth,vo_screenheight); - dwidth=d_width=newres.w; dheight=d_height=newres.h; - //myx=newres.x; myy=newres.y; + aspect(&d_width,&d_height,vo_screenwidth,vo_screenheight); + dwidth=d_width; dheight=d_height; } #endif @@ -286,12 +284,12 @@ if ( mFullscreen ) { - drwX=( vo_screenwidth - (dwidth > vo_screenwidth?vo_screenwidth:dwidth) ) / 2; /* =myx; */ + drwX=( vo_screenwidth - (dwidth > vo_screenwidth?vo_screenwidth:dwidth) ) / 2; drwcX+=drwX; - drwY=( vo_screenheight - (dheight > vo_screenheight?vo_screenheight:dheight) ) / 2; /* =myy; */ + drwY=( vo_screenheight - (dheight > vo_screenheight?vo_screenheight:dheight) ) / 2; drwcY+=drwY; - drwWidth=(dwidth > vo_screenwidth?vo_screenwidth:dwidth); /* =dwidth */ - drwHeight=(dheight > vo_screenheight?vo_screenheight:dheight); /* =dheight */ + drwWidth=(dwidth > vo_screenwidth?vo_screenwidth:dwidth); + drwHeight=(dheight > vo_screenheight?vo_screenheight:dheight); printf( "[xv-fs] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",drwcX,drwcY,drwX,drwY,drwWidth,drwHeight ); } #ifdef HAVE_NEW_GUI