diff libvo/vo_macosx.m @ 23457:a124f3abc1ec

Replace implicit use of fast_memcpy via macro by explicit use to allow for future optimization.
author reimar
date Tue, 05 Jun 2007 14:27:54 +0000
parents 300e9b7c499f
children 55bbcab62cd0
line wrap: on
line diff
--- a/libvo/vo_macosx.m	Tue Jun 05 14:12:37 2007 +0000
+++ b/libvo/vo_macosx.m	Tue Jun 05 14:27:54 2007 +0000
@@ -202,7 +202,7 @@
 	{
 		case IMGFMT_BGR32:
 		case IMGFMT_RGB32:
-			memcpy(image_data, src[0], image_width*image_height*image_bytes);
+			fast_memcpy(image_data, src[0], image_width*image_height*image_bytes);
 			break;
 
 		case IMGFMT_YUY2: