diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-05-12 18:54:03 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-05-12 18:54:03 +0000 |
commit | 5085d59ddc52c03db5aa50285f42cc4c4d6c5ad2 (patch) | |
tree | 0c8ea07441c21266da1c6f43c3e57689fa267b14 /libavcodec/bitstream.h | |
parent | 87017bada05b729c5c981178e6a02f47834c73b3 (diff) | |
download | ffmpeg-5085d59ddc52c03db5aa50285f42cc4c4d6c5ad2.tar.gz |
arm alignment fix
Originally committed as revision 4228 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/bitstream.h')
-rw-r--r-- | libavcodec/bitstream.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/bitstream.h b/libavcodec/bitstream.h index 4a9e49a845..ce664cee17 100644 --- a/libavcodec/bitstream.h +++ b/libavcodec/bitstream.h @@ -130,7 +130,7 @@ typedef struct RL_VLC_ELEM { uint8_t run; } RL_VLC_ELEM; -#ifdef ARCH_SPARC +#if defined(ARCH_SPARC) || defined(ARCH_ARMV4L) #define UNALIGNED_STORES_ARE_BAD #endif |