[Ffmpeg-devel] [PATCH] Preprocessing bug in bitstream.h
Martin Storsjö
martin
Sun Dec 3 23:41:57 CET 2006
Hi,
The attached patch fixes a small bug in the preprocessor macros in
bitstream.h when __GNUC__ isn't defined and when compiling for a non-x86
architecture.
Kind regards,
// Martin Storsj?
-------------- next part --------------
Index: bitstream.h
===================================================================
--- bitstream.h (revision 7177)
+++ bitstream.h (working copy)
@@ -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-devel
mailing list