# HG changeset patch # User rfelker # Date 1109264934 0 # Node ID e98f3d37bc1cf11c59e93895400dedc6edd83206 # Parent 041a13490497c406e1f529d482c0126e2d202c69 strides should always be signed diff -r 041a13490497 -r e98f3d37bc1c libvo/vo_vesa.c --- a/libvo/vo_vesa.c Thu Feb 24 17:07:49 2005 +0000 +++ b/libvo/vo_vesa.c Thu Feb 24 17:08:54 2005 +0000 @@ -277,7 +277,7 @@ /* is called for yuv only */ static uint32_t draw_slice(uint8_t *image[], int stride[], int w,int h,int x,int y) { - unsigned int dstride=HAS_DGA()?video_mode_info.XResolution:dstW; + int dstride=HAS_DGA()?video_mode_info.XResolution:dstW; uint8_t *dst[3]= {dga_buffer, NULL, NULL}; int dstStride[3]; if(verbose > 2) @@ -296,7 +296,7 @@ static void draw_alpha_32(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride) { - unsigned int dstride=HAS_DGA()?video_mode_info.XResolution:dstW; + int dstride=HAS_DGA()?video_mode_info.XResolution:dstW; #ifndef OSD_OUTSIDE_MOVIE if(HAS_DGA()) { @@ -309,7 +309,7 @@ static void draw_alpha_24(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride) { - unsigned int dstride=HAS_DGA()?video_mode_info.XResolution:dstW; + int dstride=HAS_DGA()?video_mode_info.XResolution:dstW; #ifndef OSD_OUTSIDE_MOVIE if(HAS_DGA()) { @@ -322,7 +322,7 @@ static void draw_alpha_16(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride) { - unsigned int dstride=HAS_DGA()?video_mode_info.XResolution:dstW; + int dstride=HAS_DGA()?video_mode_info.XResolution:dstW; #ifndef OSD_OUTSIDE_MOVIE if(HAS_DGA()) { @@ -335,7 +335,7 @@ static void draw_alpha_15(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride) { - unsigned int dstride=HAS_DGA()?video_mode_info.XResolution:dstW; + int dstride=HAS_DGA()?video_mode_info.XResolution:dstW; #ifndef OSD_OUTSIDE_MOVIE if(HAS_DGA()) { @@ -416,7 +416,7 @@ printf("vo_vesa: draw_frame was called\n"); if(sws) { - unsigned int dstride=HAS_DGA()?video_mode_info.XResolution:dstW; + int dstride=HAS_DGA()?video_mode_info.XResolution:dstW; int srcStride[1]; uint8_t *dst[3]= {dga_buffer, NULL, NULL}; int dstStride[3];