From 60ef608b015975b9d4b12868595ddbf0d747af92 Mon Sep 17 00:00:00 2001 From: nplourde Date: Mon, 31 May 2004 15:16:41 +0000 Subject: [PATCH] uyvy osd support git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12518 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/vo_quartz.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libvo/vo_quartz.c b/libvo/vo_quartz.c index 9faf19454c..b32663ea03 100644 --- a/libvo/vo_quartz.c +++ b/libvo/vo_quartz.c @@ -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);