summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authornplourde <nplourde@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-05-31 15:16:41 +0000
committernplourde <nplourde@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-05-31 15:16:41 +0000
commit60ef608b015975b9d4b12868595ddbf0d747af92 (patch)
treeeed01df20cfd4a8eec660a3faa7b797f2a6a25b7 /libvo
parentd2ad2147cc21cdc03587f51ca68eed73c5e10c88 (diff)
downloadmpv-60ef608b015975b9d4b12868595ddbf0d747af92.tar.bz2
mpv-60ef608b015975b9d4b12868595ddbf0d747af92.tar.xz
uyvy osd support
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12518 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_quartz.c2
1 files changed, 1 insertions, 1 deletions
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);