# HG changeset patch # User aurel # Date 1177196730 0 # Node ID 90d7898ff5d5b8b45ef8965aaf33f06bf5021b6b # Parent f06463413858c4a39aff636e46cf69ad35f43092 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 diff -r f06463413858 -r 90d7898ff5d5 bitstream.h --- a/bitstream.h Sat Apr 21 18:47:30 2007 +0000 +++ b/bitstream.h Sat Apr 21 23:05:30 2007 +0000 @@ -166,7 +166,7 @@ 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