summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--liba52/bitstream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/liba52/bitstream.h b/liba52/bitstream.h
index a62fbbf09e..5a3ac9eb42 100644
--- a/liba52/bitstream.h
+++ b/liba52/bitstream.h
@@ -32,7 +32,7 @@
#define ALT_BITSTREAM_READER
/* used to avoid missaligned exceptions on some archs (alpha, ...) */
-#ifdef ARCH_X86
+#if defined (ARCH_X86) || defined(ARCH_ARMV4L)
# define unaligned32(a) (*(uint32_t*)(a))
#else
# ifdef __GNUC__