1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-15 11:25:10 +00:00

Fixed bug of -vc libmpeg2 on vesa:dga

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2637 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
nick 2001-11-02 18:10:20 +00:00
parent c890da19bb
commit 846d5e18a5

View File

@ -246,8 +246,9 @@ static uint32_t draw_slice(uint8_t *image[], int stride[], int w,int h,int x,int
int rgb_stride; int rgb_stride;
yuv_slice=dga_buffer; yuv_slice=dga_buffer;
if(HAS_DGA()) yuv_slice += y_offset*SCREEN_LINE_SIZE(PIXEL_SIZE())+x_offset*PIXEL_SIZE(); if(HAS_DGA()) yuv_slice += y_offset*SCREEN_LINE_SIZE(PIXEL_SIZE())+x_offset*PIXEL_SIZE();
rgb_stride = PIXEL_SIZE()*(HAS_DGA()?video_mode_info.XResolution:image_width); rgb_stride = HAS_DGA()?video_mode_info.XResolution:image_width;
yuv_slice+=(image_width*y+x)*PIXEL_SIZE(); yuv_slice+=(rgb_stride*y+x)*PIXEL_SIZE();
rgb_stride *= PIXEL_SIZE();
yuv2rgb(yuv_slice, image[0], image[1], image[2], w, h, yuv2rgb(yuv_slice, image[0], image[1], image[2], w, h,
rgb_stride, stride[0], stride[1]); rgb_stride, stride[0], stride[1]);
} }