comparison bitstream.h @ 2672:be04f746d1fe libavcodec

arm alignment fix
author michael
date Thu, 12 May 2005 18:54:03 +0000
parents b33be8b00488
children 2b37bcabe608
comparison
equal deleted inserted replaced
2671:5619d89d243a 2672:be04f746d1fe
128 int16_t level; 128 int16_t level;
129 int8_t len; 129 int8_t len;
130 uint8_t run; 130 uint8_t run;
131 } RL_VLC_ELEM; 131 } RL_VLC_ELEM;
132 132
133 #ifdef ARCH_SPARC 133 #if defined(ARCH_SPARC) || defined(ARCH_ARMV4L)
134 #define UNALIGNED_STORES_ARE_BAD 134 #define UNALIGNED_STORES_ARE_BAD
135 #endif 135 #endif
136 136
137 /* used to avoid missaligned exceptions on some archs (alpha, ...) */ 137 /* used to avoid missaligned exceptions on some archs (alpha, ...) */
138 #if defined(ARCH_X86) || defined(ARCH_X86_64) 138 #if defined(ARCH_X86) || defined(ARCH_X86_64)