changeset 12517:4c42b1fb183f

uyvy osd support
author nplourde
date Mon, 31 May 2004 15:16:41 +0000
parents 6f7b5123ac56
children 996757299a82
files libvo/vo_quartz.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libvo/vo_quartz.c	Mon May 31 15:13:35 2004 +0000
+++ b/libvo/vo_quartz.c	Mon May 31 15:16:41 2004 +0000
@@ -114,7 +114,7 @@
 			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);