[FFmpeg-cvslog] r21867 - trunk/libavcodec/dsputil.h

mru subversion
Wed Feb 17 22:04:57 CET 2010


Author: mru
Date: Wed Feb 17 22:04:56 2010
New Revision: 21867

Log:
10l: remove stray '(' I don't know where it came from

Modified:
   trunk/libavcodec/dsputil.h

Modified: trunk/libavcodec/dsputil.h
==============================================================================
--- trunk/libavcodec/dsputil.h	Wed Feb 17 21:36:20 2010	(r21866)
+++ trunk/libavcodec/dsputil.h	Wed Feb 17 22:04:56 2010	(r21867)
@@ -705,13 +705,13 @@ static inline void emms(void)
     t (*v) __VA_ARGS__ = (void *)FFALIGN((uintptr_t)la_##v, a)
 
 #if HAVE_LOCAL_ALIGNED_8
-#   define LOCAL_ALIGNED_8((t, v, s, ...) DECLARE_ALIGNED_8(t, v) s __VA_ARGS__
+#   define LOCAL_ALIGNED_8(t, v, s, ...) DECLARE_ALIGNED_8(t, v) s __VA_ARGS__
 #else
 #   define LOCAL_ALIGNED_8(t, v, s, ...) LOCAL_ALIGNED(8, t, v, s, __VA_ARGS__)
 #endif
 
 #if HAVE_LOCAL_ALIGNED_16
-#   define LOCAL_ALIGNED_16((t, v, s, ...) DECLARE_ALIGNED_16(t, v) s __VA_ARGS__
+#   define LOCAL_ALIGNED_16(t, v, s, ...) DECLARE_ALIGNED_16(t, v) s __VA_ARGS__
 #else
 #   define LOCAL_ALIGNED_16(t, v, s, ...) LOCAL_ALIGNED(16, t, v, s, __VA_ARGS__)
 #endif



More information about the ffmpeg-cvslog mailing list