Commit 6ff3b2b8 authored by Aurelien Jacobs's avatar Aurelien Jacobs

Fix A32_BITSTREAM_READER compilation on x86

Originally committed as revision 6102 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent d6bea623
......@@ -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)\
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment