1
mirror of https://github.com/mpv-player/mpv synced 2024-08-04 14:59:58 +02:00

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

View File

@ -37,7 +37,7 @@
#define ALT_BITSTREAM_READER
/* 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))
#else
# ifdef __GNUC__