diff options
author | Mans Rullgard <mans@mansr.com> | 2011-07-01 12:47:36 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-07-01 22:18:50 +0100 |
commit | 23ce6e72123a40895baaeefeb27c7c18748bd67e (patch) | |
tree | 137bcda3dfdc7e749489cd41270da14f43e4e727 | |
parent | fccab0180748c7e796f7e5911cb5c63cf8a97697 (diff) | |
download | ffmpeg-23ce6e72123a40895baaeefeb27c7c18748bd67e.tar.gz |
get_bits: remove x86 inline asm in A32 bitstream reader
x86 does not use this variant so having inline asm there
is pointless.
Signed-off-by: Mans Rullgard <mans@mansr.com>
-rw-r--r-- | libavcodec/get_bits.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libavcodec/get_bits.h b/libavcodec/get_bits.h index b592b9a9a5..d2ae345315 100644 --- a/libavcodec/get_bits.h +++ b/libavcodec/get_bits.h @@ -201,19 +201,11 @@ static inline void skip_bits_long(GetBitContext *s, int n){ } \ } while (0) -#if ARCH_X86 -# define SKIP_CACHE(name, gb, num) \ - __asm__("shldl %2, %1, %0 \n\t" \ - "shll %2, %1 \n\t" \ - : "+r" (name##_cache0), "+r" (name##_cache1) \ - : "Ic" ((uint8_t)(num))) -#else # define SKIP_CACHE(name, gb, num) do { \ name##_cache0 <<= (num); \ name##_cache0 |= NEG_USR32(name##_cache1,num); \ name##_cache1 <<= (num); \ } while (0) -#endif # define SKIP_COUNTER(name, gb, num) name##_bit_count += (num) |