[Ffmpeg-cvslog] r8777 - trunk/libavcodec/bitstream.h

aurel subversion
Sun Apr 22 01:05:30 CEST 2007


Author: aurel
Date: Sun Apr 22 01:05:30 2007
New Revision: 8777

Modified:
   trunk/libavcodec/bitstream.h

Log:
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


Modified: trunk/libavcodec/bitstream.h
==============================================================================
--- trunk/libavcodec/bitstream.h	(original)
+++ trunk/libavcodec/bitstream.h	Sun Apr 22 01:05:30 2007
@@ -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
 




More information about the ffmpeg-cvslog mailing list