diff Plugins/Input/wma/libffwma/common.h @ 1398:1ddaf20ab50e trunk

[svn] AltiVec support for WMA, by Luca "lu_zero" Barbato from Gentoo.
author chainsaw
date Thu, 13 Jul 2006 16:01:57 -0700
parents cbdecaedd691
children
line wrap: on
line diff
--- a/Plugins/Input/wma/libffwma/common.h	Wed Jul 12 21:16:35 2006 -0700
+++ b/Plugins/Input/wma/libffwma/common.h	Thu Jul 13 16:01:57 2006 -0700
@@ -924,11 +924,6 @@
 
 #define CLAMP_TO_8BIT(d) ((d > 0xff) ? 0xff : (d < 0) ? 0 : d)
 
-/* avoid usage of various functions */
-/*#define malloc please_use_av_malloc
-#define free please_use_av_free
-#define realloc please_use_av_realloc*/
-
 #define CHECKED_ALLOCZ(p, size)\
 {\
     p= av_mallocz(size);\
@@ -938,6 +933,9 @@
     }\
 }
 
+
+
+
 #endif /* HAVE_AV_CONFIG_H */
 
 #endif /* COMMON_H */