diff libvo/vo_dxr3.c @ 23458:973e53dc7df5

Do not use fast_memcpy for small size copy, esp. when the size is constant
author reimar
date Tue, 05 Jun 2007 15:09:49 +0000
parents a124f3abc1ec
children 00aa61cde84a
line wrap: on
line diff
--- a/libvo/vo_dxr3.c	Tue Jun 05 14:27:54 2007 +0000
+++ b/libvo/vo_dxr3.c	Tue Jun 05 15:09:49 2007 +0000
@@ -1106,7 +1106,7 @@
     },*p;
 
     p = malloc(sizeof(m));
-    fast_memcpy(p,m,sizeof(m));
+    memcpy(p,m,sizeof(m));
     return p;
 }