summaryrefslogtreecommitdiffstats
path: root/liba52
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-01-30 22:27:04 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-01-30 22:27:04 +0000
commitc92055c07803f84fb1c80ec48e31fe4f108c6586 (patch)
tree97ee732cd499305982abc9b4a9e08b02cd5f75f8 /liba52
parent7e85d78826eecba6a92665c3add6aea2b584ebe6 (diff)
downloadmpv-c92055c07803f84fb1c80ec48e31fe4f108c6586.tar.bz2
mpv-c92055c07803f84fb1c80ec48e31fe4f108c6586.tar.xz
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
Diffstat (limited to 'liba52')
-rw-r--r--liba52/bitstream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/liba52/bitstream.h b/liba52/bitstream.h
index fcf2e47390..8500212c7e 100644
--- a/liba52/bitstream.h
+++ b/liba52/bitstream.h
@@ -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__