changeset 3342:ff5bed27d7ca libavcodec

MIPS doesn't like unaligned accesses
author mru
date Mon, 12 Jun 2006 21:34:43 +0000
parents bd7a496e44c9
children 35757cceddd0
files bitstream.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/bitstream.h	Mon Jun 12 09:30:17 2006 +0000
+++ b/bitstream.h	Mon Jun 12 21:34:43 2006 +0000
@@ -135,7 +135,7 @@
     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