100l to Gabu, this caused divide-by-zero with -vo mga. Apparently

someone only tested -vo xmga. Feel free to reenable if you can fix the
sigfpe properly.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9728 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
rfelker 2003-03-29 19:56:31 +00:00
parent 22e6e9baf7
commit 63dd151a4c
1 changed files with 3 additions and 2 deletions

View File

@ -27,7 +27,7 @@ static uint32_t drwcX,drwcY,dwidth,dheight;
static void draw_alpha(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride){
uint32_t bespitch = (mga_vid_config.src_width + 31) & ~31;
x0+=mga_vid_config.src_width*(vo_panscan_x>>1)/(vo_dwidth+vo_panscan_x);
// x0+=mga_vid_config.src_width*(vo_panscan_x>>1)/(vo_dwidth+vo_panscan_x);
switch(mga_vid_config.format){
case MGA_VID_FORMAT_YV12:
case MGA_VID_FORMAT_IYUV:
@ -45,7 +45,8 @@ static void draw_alpha(int x0,int y0, int w,int h, unsigned char* src, unsigned
static void draw_osd(void)
{
vo_draw_text(mga_vid_config.src_width-mga_vid_config.src_width*vo_panscan_x/(vo_dwidth+vo_panscan_x),mga_vid_config.src_height,draw_alpha);
vo_draw_text(mga_vid_config.src_width,mga_vid_config.src_height,draw_alpha);
// vo_draw_text(mga_vid_config.src_width-mga_vid_config.src_width*vo_panscan_x/(vo_dwidth+vo_panscan_x),mga_vid_config.src_height,draw_alpha);
}