uyvy osd support

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12518 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
nplourde 2004-05-31 15:16:41 +00:00
parent d2ad2147cc
commit 60ef608b01
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ static void draw_alpha(int x0, int y0, int w, int h, unsigned char *src, unsigne
vo_draw_alpha_yv12(w,h,src,srca,stride, ((char*)P) + P->componentInfoY.offset + x0 + y0 * imgRect.right, imgRect.right);
break;
case IMGFMT_UYVY:
//vo_draw_alpha_uyvy(w,h,src,srca,stride,((char*)P) + (x0 + y0 * imgRect.right) * 2,imgRect.right*2);
vo_draw_alpha_uyvy(w,h,src,srca,stride,((char*)P) + (x0 + y0 * imgRect.right) * 2,imgRect.right*2);
break;
case IMGFMT_YUY2:
vo_draw_alpha_yuy2(w,h,src,srca,stride,((char*)P) + (x0 + y0 * imgRect.right) * 2,imgRect.right*2);