2006-09-10 14:02:42 +00:00
|
|
|
/*
|
|
|
|
* copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
|
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2006-09-10 14:02:42 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2006-09-10 14:02:42 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2006-09-10 14:02:42 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-09-10 14:02:42 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2003-03-06 11:32:04 +00:00
|
|
|
/**
|
|
|
|
* @file bswap.h
|
2008-03-10 18:42:09 +00:00
|
|
|
* byte swapping routines
|
2003-03-06 11:32:04 +00:00
|
|
|
*/
|
|
|
|
|
2007-10-17 09:37:46 +00:00
|
|
|
#ifndef FFMPEG_BSWAP_H
|
|
|
|
#define FFMPEG_BSWAP_H
|
2001-07-30 09:04:34 +00:00
|
|
|
|
2007-06-16 22:59:13 +00:00
|
|
|
#include <stdint.h>
|
2008-03-13 18:04:21 +00:00
|
|
|
#include "config.h"
|
2007-06-16 22:59:13 +00:00
|
|
|
#include "common.h"
|
|
|
|
|
2001-07-30 09:04:34 +00:00
|
|
|
#ifdef HAVE_BYTESWAP_H
|
|
|
|
#include <byteswap.h>
|
|
|
|
#else
|
|
|
|
|
2008-03-19 06:17:43 +00:00
|
|
|
static av_always_inline av_const uint16_t bswap_16(uint16_t x)
|
2001-07-30 09:04:34 +00:00
|
|
|
{
|
2007-04-26 08:20:21 +00:00
|
|
|
#if defined(ARCH_X86)
|
2008-03-18 22:28:33 +00:00
|
|
|
asm("rorw $8, %0" : "+r"(x));
|
2007-04-26 08:20:21 +00:00
|
|
|
#elif defined(ARCH_SH4)
|
2008-03-18 20:52:37 +00:00
|
|
|
asm("swap.b %0,%0" : "=r"(x) : "0"(x));
|
2007-04-26 08:20:21 +00:00
|
|
|
#else
|
|
|
|
x= (x>>8) | (x<<8);
|
|
|
|
#endif
|
2001-07-30 09:04:34 +00:00
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
2008-03-19 06:17:43 +00:00
|
|
|
static av_always_inline av_const uint32_t bswap_32(uint32_t x)
|
2001-07-30 09:04:34 +00:00
|
|
|
{
|
2007-04-26 08:20:21 +00:00
|
|
|
#if defined(ARCH_X86)
|
2008-03-08 18:33:07 +00:00
|
|
|
#ifdef HAVE_BSWAP
|
2008-03-18 22:28:33 +00:00
|
|
|
asm("bswap %0" : "+r" (x));
|
2001-07-30 09:04:34 +00:00
|
|
|
#else
|
2008-03-18 22:28:33 +00:00
|
|
|
asm("rorw $8, %w0 \n\t"
|
|
|
|
"rorl $16, %0 \n\t"
|
|
|
|
"rorw $8, %w0"
|
|
|
|
: "+r"(x));
|
2001-07-30 09:04:34 +00:00
|
|
|
#endif
|
2003-05-14 12:18:49 +00:00
|
|
|
#elif defined(ARCH_SH4)
|
2008-03-18 20:52:37 +00:00
|
|
|
asm("swap.b %0,%0\n"
|
|
|
|
"swap.w %0,%0\n"
|
|
|
|
"swap.b %0,%0\n"
|
|
|
|
: "=r"(x) : "0"(x));
|
2007-04-26 08:20:21 +00:00
|
|
|
#elif defined(ARCH_ARM)
|
2005-05-26 14:32:46 +00:00
|
|
|
uint32_t t;
|
2008-03-18 20:52:37 +00:00
|
|
|
asm ("eor %1, %0, %0, ror #16 \n\t"
|
|
|
|
"bic %1, %1, #0xFF0000 \n\t"
|
|
|
|
"mov %0, %0, ror #8 \n\t"
|
|
|
|
"eor %0, %0, %1, lsr #8 \n\t"
|
|
|
|
: "+r"(x), "+r"(t));
|
2007-04-24 23:21:29 +00:00
|
|
|
#elif defined(ARCH_BFIN)
|
|
|
|
unsigned tmp;
|
2008-02-15 14:58:18 +00:00
|
|
|
asm("%1 = %0 >> 8 (V); \n\t"
|
|
|
|
"%0 = %0 << 8 (V); \n\t"
|
|
|
|
"%0 = %0 | %1; \n\t"
|
|
|
|
"%0 = PACK(%0.L, %0.H); \n\t"
|
2007-04-24 23:21:29 +00:00
|
|
|
: "+d"(x), "=&d"(tmp));
|
2005-05-26 14:32:46 +00:00
|
|
|
#else
|
2005-05-10 19:54:38 +00:00
|
|
|
x= ((x<<8)&0xFF00FF00) | ((x>>8)&0x00FF00FF);
|
2007-04-26 08:15:39 +00:00
|
|
|
x= (x>>16) | (x<<16);
|
2007-04-26 08:20:21 +00:00
|
|
|
#endif
|
2007-04-26 08:15:39 +00:00
|
|
|
return x;
|
2005-05-10 10:05:44 +00:00
|
|
|
}
|
2001-07-30 09:04:34 +00:00
|
|
|
|
2008-03-19 06:17:43 +00:00
|
|
|
static inline uint64_t av_const bswap_64(uint64_t x)
|
2002-05-26 15:24:32 +00:00
|
|
|
{
|
2005-05-10 19:54:38 +00:00
|
|
|
#if 0
|
|
|
|
x= ((x<< 8)&0xFF00FF00FF00FF00ULL) | ((x>> 8)&0x00FF00FF00FF00FFULL);
|
|
|
|
x= ((x<<16)&0xFFFF0000FFFF0000ULL) | ((x>>16)&0x0000FFFF0000FFFFULL);
|
|
|
|
return (x>>32) | (x<<32);
|
2007-04-26 08:20:21 +00:00
|
|
|
#elif defined(ARCH_X86_64)
|
2008-03-18 20:52:37 +00:00
|
|
|
asm("bswap %0": "=r" (x) : "0" (x));
|
2007-04-26 08:20:21 +00:00
|
|
|
return x;
|
2005-05-10 19:54:38 +00:00
|
|
|
#else
|
2005-12-17 18:14:38 +00:00
|
|
|
union {
|
2002-05-26 15:24:32 +00:00
|
|
|
uint64_t ll;
|
2005-12-17 18:14:38 +00:00
|
|
|
uint32_t l[2];
|
2002-05-26 15:24:32 +00:00
|
|
|
} w, r;
|
|
|
|
w.ll = x;
|
|
|
|
r.l[0] = bswap_32 (w.l[1]);
|
|
|
|
r.l[1] = bswap_32 (w.l[0]);
|
|
|
|
return r.ll;
|
2005-05-10 19:54:38 +00:00
|
|
|
#endif
|
2002-05-26 15:24:32 +00:00
|
|
|
}
|
2001-07-30 09:04:34 +00:00
|
|
|
|
2005-12-22 01:10:11 +00:00
|
|
|
#endif /* !HAVE_BYTESWAP_H */
|
2001-07-30 09:04:34 +00:00
|
|
|
|
|
|
|
// be2me ... BigEndian to MachineEndian
|
|
|
|
// le2me ... LittleEndian to MachineEndian
|
|
|
|
|
|
|
|
#ifdef WORDS_BIGENDIAN
|
|
|
|
#define be2me_16(x) (x)
|
|
|
|
#define be2me_32(x) (x)
|
|
|
|
#define be2me_64(x) (x)
|
|
|
|
#define le2me_16(x) bswap_16(x)
|
|
|
|
#define le2me_32(x) bswap_32(x)
|
|
|
|
#define le2me_64(x) bswap_64(x)
|
|
|
|
#else
|
|
|
|
#define be2me_16(x) bswap_16(x)
|
|
|
|
#define be2me_32(x) bswap_32(x)
|
|
|
|
#define be2me_64(x) bswap_64(x)
|
|
|
|
#define le2me_16(x) (x)
|
|
|
|
#define le2me_32(x) (x)
|
|
|
|
#define le2me_64(x) (x)
|
|
|
|
#endif
|
|
|
|
|
2007-10-17 09:37:46 +00:00
|
|
|
#endif /* FFMPEG_BSWAP_H */
|