From fba11c94ffcd4f2b76ad777a02aaab3941e95817 Mon Sep 17 00:00:00 2001 From: reimar Date: Sat, 12 May 2007 09:03:50 +0000 Subject: [PATCH] Fix crash with -flip on 64 bit systems, the result of stride*height _must_ be sign extended. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23301 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/vo_x11.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libvo/vo_x11.c b/libvo/vo_x11.c index 4053cfd765..523d2dd0b3 100644 --- a/libvo/vo_x11.c +++ b/libvo/vo_x11.c @@ -653,7 +653,7 @@ static int draw_slice(uint8_t * src[], int stride[], int w, int h, if (Flip_Flag) { dstStride[0] = -image_width * ((bpp + 7) / 8); - dst[0] = ImageData - dstStride[0] * (image_height - 1); + dst[0] = ImageData - (long)dstStride[0] * (image_height - 1); } else { dstStride[0] = image_width * ((bpp + 7) / 8);