diff options
author | BERO <bero@geocities.co.jp> | 2003-05-14 12:18:49 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-05-14 12:18:49 +0000 |
commit | 0c6bd2ea0a4de2d575d35e38149ec16ae31d3f49 (patch) | |
tree | 5f0cb3ed7c16aa9170101d34cb96a55a886f00cd /libavcodec/bswap.h | |
parent | 891f64b33972bb35f64d0b7ae0928004ff278f5b (diff) | |
download | ffmpeg-0c6bd2ea0a4de2d575d35e38149ec16ae31d3f49.tar.gz |
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
Originally committed as revision 1877 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/bswap.h')
-rw-r--r-- | libavcodec/bswap.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/libavcodec/bswap.h b/libavcodec/bswap.h index 035216dddd..37c615b3ec 100644 --- a/libavcodec/bswap.h +++ b/libavcodec/bswap.h @@ -47,6 +47,39 @@ inline static unsigned long long int ByteSwap64(unsigned long long int x) } #define bswap_64(x) ByteSwap64(x) +#elif defined(ARCH_SH4) + +static inline uint16_t ByteSwap16(uint16_t x) { + __asm__("swap.b %0,%0":"=r"(x):"0"(x)); + return x; +} + +static inline uint32_t ByteSwap32(uint32_t x) { + __asm__( + "swap.b %0,%0\n" + "swap.w %0,%0\n" + "swap.b %0,%0\n" + :"=r"(x):"0"(x)); + return x; +} + +#define bswap_16(x) ByteSwap16(x) +#define bswap_32(x) ByteSwap32(x) + +inline static uint64_t ByteSwap64(uint64_t x) +{ + union { + uint64_t ll; + struct { + uint32_t l,h; + } l; + } r; + r.l.l = bswap_32 (x); + r.l.h = bswap_32 (x>>32); + return r.ll; +} +#define bswap_64(x) ByteSwap64(x) + #else #define bswap_16(x) (((x) & 0x00ff) << 8 | ((x) & 0xff00) >> 8) |