summaryrefslogtreecommitdiff
path: root/libavcodec/bitstream.h
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-06-12 21:34:43 +0000
committerMåns Rullgård <mans@mansr.com>2006-06-12 21:34:43 +0000
commite6f0ad516794a2c7c707de84942c79ca56fa3416 (patch)
tree6ef137f5dd80be41d8b4756893ac564ecbc16887 /libavcodec/bitstream.h
parenta2fe3b58697901c216f394caf47be574f5cc42e3 (diff)
MIPS doesn't like unaligned accesses
Originally committed as revision 5469 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/bitstream.h')
-rw-r--r--libavcodec/bitstream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/bitstream.h b/libavcodec/bitstream.h
index 195bcc7a18..265e934734 100644
--- a/libavcodec/bitstream.h
+++ b/libavcodec/bitstream.h
@@ -135,7 +135,7 @@ typedef struct RL_VLC_ELEM {
uint8_t run;
} RL_VLC_ELEM;
-#if defined(ARCH_SPARC) || defined(ARCH_ARMV4L)
+#if defined(ARCH_SPARC) || defined(ARCH_ARMV4L) || defined(ARCH_MIPS)
#define UNALIGNED_STORES_ARE_BAD
#endif