summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Hoffman <mmh@pleasantst.com>2007-04-21 23:05:30 +0000
committerAurelien Jacobs <aurel@gnuage.org>2007-04-21 23:05:30 +0000
commit73a47fb297e32607d7228cdffeb27bdf6cdb181a (patch)
treef0068d095596ada6a7ab1069e58a82c08cddc813
parentee0981ac738559430eae0715b9ebc04237283ba9 (diff)
Blackfin is a strictly aligned processor.
Patch by Marc Hoffman mmh _at_ pleasantst.com Subject: [Ffmpeg-devel] PATCH Blackfin UNALIGNED_STORES_ARE_BAD in bitstream.h Date: Tue, 17 Apr 2007 06:12:02 -0400 Originally committed as revision 8777 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/bitstream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/bitstream.h b/libavcodec/bitstream.h
index e584774e9a..2ef76ec5d7 100644
--- a/libavcodec/bitstream.h
+++ b/libavcodec/bitstream.h
@@ -166,7 +166,7 @@ typedef struct RL_VLC_ELEM {
uint8_t run;
} RL_VLC_ELEM;
-#if defined(ARCH_SPARC) || defined(ARCH_ARMV4L) || defined(ARCH_MIPS)
+#if defined(ARCH_SPARC) || defined(ARCH_ARMV4L) || defined(ARCH_MIPS) || defined(ARCH_BFIN)
#define UNALIGNED_STORES_ARE_BAD
#endif