From 63dd151a4c888df649192625a8868e37a6ee9543 Mon Sep 17 00:00:00 2001 From: rfelker Date: Sat, 29 Mar 2003 19:56:31 +0000 Subject: 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 --- libvo/mga_common.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'libvo') diff --git a/libvo/mga_common.c b/libvo/mga_common.c index df710fc616..558818ded6 100644 --- a/libvo/mga_common.c +++ b/libvo/mga_common.c @@ -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); } -- cgit v1.2.3