]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - libavutil/bswap.h
reorder bswap functions into bit-depth, special-casing inside the functions.
[frescor/ffmpeg.git] / libavutil / bswap.h
1 /*
2  * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 /**
22  * @file bswap.h
23  * byte swap.
24  */
25
26 #ifndef __BSWAP_H__
27 #define __BSWAP_H__
28
29 #ifdef HAVE_BYTESWAP_H
30 #include <byteswap.h>
31 #else
32
33 #ifdef ARCH_X86_64
34 #  define LEGACY_REGS "=Q"
35 #else
36 #  define LEGACY_REGS "=q"
37 #endif
38
39 static av_always_inline uint16_t bswap_16(uint16_t x)
40 {
41 #if defined(ARCH_X86)
42   __asm("rorw $8, %0"   :
43         LEGACY_REGS (x) :
44         "0" (x));
45 #elif defined(ARCH_SH4)
46         __asm__("swap.b %0,%0":"=r"(x):"0"(x));
47 #else
48     x= (x>>8) | (x<<8);
49 #endif
50     return x;
51 }
52
53 static av_always_inline uint32_t bswap_32(uint32_t x)
54 {
55 #if defined(ARCH_X86)
56 #if __CPU__ != 386
57  __asm("bswap   %0":
58       "=r" (x)     :
59 #else
60  __asm("xchgb   %b0,%h0\n"
61       "         rorl    $16,%0\n"
62       "         xchgb   %b0,%h0":
63       LEGACY_REGS (x)                :
64 #endif
65       "0" (x));
66 #elif defined(ARCH_SH4)
67         __asm__(
68         "swap.b %0,%0\n"
69         "swap.w %0,%0\n"
70         "swap.b %0,%0\n"
71         :"=r"(x):"0"(x));
72 #elif defined(ARCH_ARM)
73     uint32_t t;
74     __asm__ (
75       "eor %1, %0, %0, ror #16 \n\t"
76       "bic %1, %1, #0xFF0000   \n\t"
77       "mov %0, %0, ror #8      \n\t"
78       "eor %0, %0, %1, lsr #8  \n\t"
79       : "+r"(x), "+r"(t));
80 #elif defined(ARCH_BFIN)
81     unsigned tmp;
82     asm("%1 = %0 >> 8 (V);\n\t"
83         "%0 = %0 << 8 (V);\n\t"
84         "%0 = %0 | %1;\n\t"
85         "%0 = PACK(%0.L, %0.H);\n\t"
86         : "+d"(x), "=&d"(tmp));
87 #else
88     x= ((x<<8)&0xFF00FF00) | ((x>>8)&0x00FF00FF);
89     x= (x>>16) | (x<<16);
90 #endif
91     return x;
92 }
93
94 static inline uint64_t bswap_64(uint64_t x)
95 {
96 #if 0
97     x= ((x<< 8)&0xFF00FF00FF00FF00ULL) | ((x>> 8)&0x00FF00FF00FF00FFULL);
98     x= ((x<<16)&0xFFFF0000FFFF0000ULL) | ((x>>16)&0x0000FFFF0000FFFFULL);
99     return (x>>32) | (x<<32);
100 #elif defined(ARCH_X86_64)
101   __asm("bswap  %0":
102         "=r" (x)   :
103         "0" (x));
104   return x;
105 #else
106     union {
107         uint64_t ll;
108         uint32_t l[2];
109     } w, r;
110     w.ll = x;
111     r.l[0] = bswap_32 (w.l[1]);
112     r.l[1] = bswap_32 (w.l[0]);
113     return r.ll;
114 #endif
115 }
116
117 #endif  /* !HAVE_BYTESWAP_H */
118
119 // be2me ... BigEndian to MachineEndian
120 // le2me ... LittleEndian to MachineEndian
121
122 #ifdef WORDS_BIGENDIAN
123 #define be2me_16(x) (x)
124 #define be2me_32(x) (x)
125 #define be2me_64(x) (x)
126 #define le2me_16(x) bswap_16(x)
127 #define le2me_32(x) bswap_32(x)
128 #define le2me_64(x) bswap_64(x)
129 #else
130 #define be2me_16(x) bswap_16(x)
131 #define be2me_32(x) bswap_32(x)
132 #define be2me_64(x) bswap_64(x)
133 #define le2me_16(x) (x)
134 #define le2me_32(x) (x)
135 #define le2me_64(x) (x)
136 #endif
137
138 #endif /* __BSWAP_H__ */