diff options
author | James Morrison <ja2morri@csclub.uwaterloo.ca> | 2004-04-24 15:16:23 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-04-24 15:16:23 +0000 |
commit | bb476ff36743d7b2bf61a2c8b5741d050e25adbc (patch) | |
tree | 2cbe0667cf53351badbf9e99646d9c3885878df1 /libavcodec/common.h | |
parent | aab9cdcff89b63eefd581758809a56895ba8d903 (diff) | |
download | ffmpeg-bb476ff36743d7b2bf61a2c8b5741d050e25adbc.tar.gz |
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
Originally committed as revision 3057 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/common.h')
-rw-r--r-- | libavcodec/common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/common.h b/libavcodec/common.h index d488d327bd..203579ac5e 100644 --- a/libavcodec/common.h +++ b/libavcodec/common.h @@ -372,7 +372,7 @@ typedef struct RL_VLC_ELEM { uint8_t run; } RL_VLC_ELEM; -#ifdef ARCH_SPARC64 +#ifdef ARCH_SPARC #define UNALIGNED_STORES_ARE_BAD #endif @@ -423,7 +423,7 @@ static inline void put_bits(PutBitContext *s, int n, unsigned int value) bit_buf<<=bit_left; bit_buf |= value >> (n - bit_left); #ifdef UNALIGNED_STORES_ARE_BAD - if (3 & (int) s->buf_ptr) { + if (3 & (intptr_t) s->buf_ptr) { s->buf_ptr[0] = bit_buf >> 24; s->buf_ptr[1] = bit_buf >> 16; s->buf_ptr[2] = bit_buf >> 8; |