Mercurial > mplayer.hg
changeset 14796:e98f3d37bc1c
strides should always be signed
author | rfelker |
---|---|
date | Thu, 24 Feb 2005 17:08:54 +0000 |
parents | 041a13490497 |
children | 05eab20de476 |
files | libvo/vo_vesa.c |
diffstat | 1 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- 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];