[Ffmpeg-cvslog] r5469 - trunk/libavcodec/bitstream.h
mru
subversion
Mon Jun 12 23:34:43 CEST 2006
Author: mru
Date: Mon Jun 12 23:34:43 2006
New Revision: 5469
Modified:
trunk/libavcodec/bitstream.h
Log:
MIPS doesn't like unaligned accesses
Modified: trunk/libavcodec/bitstream.h
==============================================================================
--- trunk/libavcodec/bitstream.h (original)
+++ trunk/libavcodec/bitstream.h Mon Jun 12 23:34:43 2006
@@ -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
More information about the ffmpeg-cvslog
mailing list