From e6f0ad516794a2c7c707de84942c79ca56fa3416 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Mon, 12 Jun 2006 21:34:43 +0000 Subject: [PATCH] MIPS doesn't like unaligned accesses Originally committed as revision 5469 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/bitstream.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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