Mercurial > mplayer.hg
view libvo/aspect.c @ 2232:65996b3467d7
MMX & MMX2 optimizations (MMX2 is buggy and commented out)
32, 24, 16, 15 bit support in C (only 32 & 16 tested)
32, 16 bit support in mmx (16 with dithering)
ranges of some variables changed so mmx likes them more
author | michael |
---|---|
date | Wed, 17 Oct 2001 02:30:39 +0000 |
parents | a98d5300f5e9 |
children | 48f0ac1e9d13 |
line wrap: on
line source
/* Stuff for correct aspect scaling. */ //#define ASPECT_DEBUG #ifdef ASPECT_DEBUG #include <stdio.h> #endif float monitor_aspect=4.0/3.0; /* aspect is called with the source resolution and the * resolution, that the scaled image should fit into */ void aspect(int *srcw, int *srch, int fitinw, int fitinh){ int srcwcp, srchcp, tmp; srcwcp=*srcw; srchcp=*srch; srcwcp=fitinw; #ifdef ASPECT_DEBUG printf("aspect(0) fitin: %dx%d \n",fitinw,fitinh); printf("aspect(1) wh: %dx%d (org: %dx%d)\n",srcwcp,srchcp,*srcw,*srch); #endif srchcp=(int)(((float)fitinw / (float)*srcw * (float)*srch) * ((float)fitinh / ((float)fitinw / monitor_aspect))); srchcp+=srchcp%2; // round #ifdef ASPECT_DEBUG printf("aspect(2) wh: %dx%d (org: %dx%d)\n",srcwcp,srchcp,*srcw,*srch); #endif if(srchcp>fitinh || srchcp<*srch){ tmp=(int)(((float)fitinh / (float)*srch * (float)*srcw) * ((float)fitinw / ((float)fitinh / (1/monitor_aspect)))); if(srcwcp>fitinw){ srchcp=fitinh; srcwcp=tmp; srcwcp+=srcwcp%2; // round } } #ifdef ASPECT_DEBUG printf("aspect(3) wh: %dx%d (org: %dx%d)\n",srcwcp,srchcp,*srcw,*srch); #endif *srcw=srcwcp; *srch=srchcp; #ifdef ASPECT_DEBUG printf("aspect(4) wh: %dx%d (org: %dx%d)\n",srcwcp,srchcp,*srcw,*srch); #endif }