diff options
author | alex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-06-20 13:10:42 +0000 |
---|---|---|
committer | alex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-06-20 13:10:42 +0000 |
commit | c34a7dc93aa7153437550134854e53901f6cbe55 (patch) | |
tree | 50b04a5bba6259708ab9fac2bbc80902e086e383 /liba52 | |
parent | 5ff7d7bb6e2e3619831422d97316c94bc98ce902 (diff) |
arm support by armin.gerritsen@philips.com (also seen a patch like this on openzaurus' mplayer port)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10314 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'liba52')
-rw-r--r-- | liba52/bitstream.h | 2 |
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__ |