summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);