diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2006-08-26 18:12:16 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2006-08-26 18:12:16 +0000 |
commit | 6ff3b2b838ed0c8cce17229339aed214b0212bb3 (patch) | |
tree | bf468d97957ba7242c8298f915dd25e9cbe049cc /libavcodec/bitstream.h | |
parent | d6bea62338ddd117a925d4a8d203caaf40a74b03 (diff) | |
download | ffmpeg-6ff3b2b838ed0c8cce17229339aed214b0212bb3.tar.gz |
Fix A32_BITSTREAM_READER compilation on x86
Originally committed as revision 6102 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/bitstream.h')
-rw-r--r-- | libavcodec/bitstream.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/bitstream.h b/libavcodec/bitstream.h index 7325449aa1..e0322b01da 100644 --- a/libavcodec/bitstream.h +++ b/libavcodec/bitstream.h @@ -553,7 +553,7 @@ static inline void skip_bits_long(GetBitContext *s, int n){ "shldl %2, %1, %0 \n\t"\ "shll %2, %1 \n\t"\ : "+r" (name##_cache0), "+r" (name##_cache1)\ - : "Ic" ((uint8_t)num)\ + : "Ic" ((uint8_t)(num))\ ); #else # define SKIP_CACHE(name, gb, num)\ |