[Ffmpeg-cvslog] r7261 - trunk/libavcodec/bitstream.h

bcoudurier subversion
Fri Dec 8 14:25:37 CET 2006


Author: bcoudurier
Date: Fri Dec  8 14:25:37 2006
New Revision: 7261

Modified:
   trunk/libavcodec/bitstream.h

Log:
fix bug when __GNUC__ isn't defined and when compiling for a non-x86 architecture, patch by Martin Storsj?, martin at martin st

Modified: trunk/libavcodec/bitstream.h
==============================================================================
--- trunk/libavcodec/bitstream.h	(original)
+++ trunk/libavcodec/bitstream.h	Fri Dec  8 14:25:37 2006
@@ -187,12 +187,12 @@
 }
 #    elif defined(__DECC)
 #    define unaligned(x)                                        \
-static inline uint##x##_t unaligned##x##(const void *v) {       \
+static inline uint##x##_t unaligned##x(const void *v) {         \
     return *(const __unaligned uint##x##_t *) v;                \
 }
 #    else
 #    define unaligned(x)                                        \
-static inline uint##x##_t unaligned##x##(const void *v) {       \
+static inline uint##x##_t unaligned##x(const void *v) {         \
     return *(const uint##x##_t *) v;                            \
 }
 #    endif




More information about the ffmpeg-cvslog mailing list