]> code.delx.au - pulseaudio/blob - src/pulsecore/endianmacros.h
prefix by order macros with PA_
[pulseaudio] / src / pulsecore / endianmacros.h
1 #ifndef fooendianmacroshfoo
2 #define fooendianmacroshfoo
3
4 /* $Id$ */
5
6 /***
7 This file is part of PulseAudio.
8
9 Copyright 2004-2006 Lennart Poettering
10 Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
11
12 PulseAudio is free software; you can redistribute it and/or modify
13 it under the terms of the GNU Lesser General Public License as published
14 by the Free Software Foundation; either version 2 of the License,
15 or (at your option) any later version.
16
17 PulseAudio is distributed in the hope that it will be useful, but
18 WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 General Public License for more details.
21
22 You should have received a copy of the GNU Lesser General Public License
23 along with PulseAudio; if not, write to the Free Software
24 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
25 USA.
26 ***/
27
28 #include <inttypes.h>
29
30 #ifndef PACKAGE
31 #error "Please include config.h before including this file!"
32 #endif
33
34 #ifdef HAVE_BYTESWAP_H
35 #include <byteswap.h>
36 #endif
37
38 #ifdef HAVE_BYTESWAP_H
39 #define PA_INT16_SWAP(x) ((int16_t) bswap_16((uint16_t) x))
40 #define PA_UINT16_SWAP(x) ((uint16_t) bswap_16((uint16_t) x))
41 #define PA_INT32_SWAP(x) ((int32_t) bswap_32((uint32_t) x))
42 #define PA_UINT32_SWAP(x) ((uint32_t) bswap_32((uint32_t) x))
43 #else
44 #define PA_INT16_SWAP(x) ( (int16_t) ( ((uint16_t) x >> 8) | ((uint16_t) x << 8) ) )
45 #define PA_UINT16_SWAP(x) ( (uint16_t) ( ((uint16_t) x >> 8) | ((uint16_t) x << 8) ) )
46 #define PA_INT32_SWAP(x) ( (int32_t) ( ((uint32_t) x >> 24) | ((uint32_t) x << 24) | (((uint32_t) x & 0xFF00) << 8) | ((((uint32_t) x) >> 8) & 0xFF00) ) )
47 #define PA_UINT32_SWAP(x) ( (uint32_t) ( ((uint32_t) x >> 24) | ((uint32_t) x << 24) | (((uint32_t) x & 0xFF00) << 8) | ((((uint32_t) x) >> 8) & 0xFF00) ) )
48 #endif
49
50 #define PA_MAYBE_INT16_SWAP(c,x) ((c) ? PA_INT32_SWAP(x) : x)
51 #define PA_MAYBE_UINT16_SWAP(c,x) ((c) ? PA_UINT32_SWAP(x) : x)
52
53 #define PA_MAYBE_INT32_SWAP(c,x) ((c) ? PA_INT32_SWAP(x) : x)
54 #define PA_MAYBE_UINT32_SWAP(c,x) ((c) ? PA_UINT32_SWAP(x) : x)
55
56 #ifdef WORDS_BIGENDIAN
57 #define PA_INT16_FROM_LE(x) PA_INT16_SWAP(x)
58 #define PA_INT16_FROM_BE(x) ((int16_t)(x))
59
60 #define PA_INT16_TO_LE(x) PA_INT16_SWAP(x)
61 #define PA_INT16_TO_BE(x) ((int16_t)(x))
62
63 #define PA_UINT16_FROM_LE(x) PA_UINT16_SWAP(x)
64 #define PA_UINT16_FROM_BE(x) ((uint16_t)(x))
65
66 #define PA_INT32_FROM_LE(x) PA_INT32_SWAP(x)
67 #define PA_INT32_FROM_BE(x) ((int32_t)(x))
68
69 #define PA_UINT32_FROM_LE(x) PA_UINT32_SWAP(x)
70 #define PA_UINT32_FROM_BE(x) ((uint32_t)(x))
71
72 #define PA_UINT32_TO_LE(x) PA_UINT32_SWAP(x)
73 #define PA_UINT32_TO_BE(x) ((uint32_t)(x))
74 #else
75 #define PA_INT16_FROM_LE(x) ((int16_t)(x))
76 #define PA_INT16_FROM_BE(x) PA_INT16_SWAP(x)
77
78 #define PA_INT16_TO_LE(x) ((int16_t)(x))
79 #define PA_INT16_TO_BE(x) PA_INT16_SWAP(x)
80
81 #define PA_UINT16_FROM_LE(x) ((uint16_t)(x))
82 #define PA_UINT16_FROM_BE(x) PA_UINT16_SWAP(x)
83
84 #define PA_INT32_FROM_LE(x) ((int32_t)(x))
85 #define PA_INT32_FROM_BE(x) PA_INT32_SWAP(x)
86
87 #define PA_UINT32_FROM_LE(x) ((uint32_t)(x))
88 #define PA_UINT32_FROM_BE(x) PA_UINT32_SWAP(x)
89
90 #define PA_UINT32_TO_LE(x) ((uint32_t)(x))
91 #define PA_UINT32_TO_BE(x) PA_UINT32_SWAP(x)
92 #endif
93
94 #endif