[Ffmpeg-cvslog] r6102 - trunk/libavcodec/bitstream.h
aurel
subversion
Sat Aug 26 20:12:16 CEST 2006
Author: aurel
Date: Sat Aug 26 20:12:16 2006
New Revision: 6102
Modified:
trunk/libavcodec/bitstream.h
Log:
Fix A32_BITSTREAM_READER compilation on x86
Modified: trunk/libavcodec/bitstream.h
==============================================================================
--- trunk/libavcodec/bitstream.h (original)
+++ trunk/libavcodec/bitstream.h Sat Aug 26 20:12:16 2006
@@ -553,7 +553,7 @@
"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)\
More information about the ffmpeg-cvslog
mailing list