HAVE_ARMV6 is defined to 0/1, use the preprocessor directive accordingly.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28394 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2009-01-30 22:27:04 +00:00
parent 7e85d78826
commit c92055c078
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@
#define ALT_BITSTREAM_READER #define ALT_BITSTREAM_READER
/* used to avoid misaligned exceptions on some archs (alpha, ...) */ /* used to avoid misaligned exceptions on some archs (alpha, ...) */
#if ARCH_X86 || defined(HAVE_ARMV6) #if ARCH_X86 || HAVE_ARMV6
# define unaligned32(a) (*(uint32_t*)(a)) # define unaligned32(a) (*(uint32_t*)(a))
#else #else
# ifdef __GNUC__ # ifdef __GNUC__