Mercurial > hg > orthanc
annotate OrthancFramework/Sources/Endianness.h @ 4596:2b64cc3cea99
added OrthancPluginContentType_DicomUntilPixelData
author | Alain Mazy <am@osimis.io> |
---|---|
date | Wed, 17 Mar 2021 15:31:26 +0100 |
parents | c1f36fd13730 |
children | 7053502fbf97 |
rev | line source |
---|---|
1938 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
4437
d9473bd5ed43
upgrade to year 2021
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4119
diff
changeset
|
5 * Copyright (C) 2017-2021 Osimis S.A., Belgium |
1938 | 6 * |
7 * This program is free software: you can redistribute it and/or | |
4119
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
8 * modify it under the terms of the GNU Lesser General Public License |
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
9 * as published by the Free Software Foundation, either version 3 of |
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
10 * the License, or (at your option) any later version. |
1938 | 11 * |
12 * This program is distributed in the hope that it will be useful, but | |
13 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
4119
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
15 * Lesser General Public License for more details. |
1938 | 16 * |
4119
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
17 * You should have received a copy of the GNU Lesser General Public |
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
18 * License along with this program. If not, see |
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
19 * <http://www.gnu.org/licenses/>. |
1938 | 20 **/ |
21 | |
22 | |
23 #pragma once | |
24 | |
25 | |
26 /******************************************************************** | |
2407
5edec967055e
fix sandboxed builds
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2244
diff
changeset
|
27 ** LINUX-LIKE ARCHITECTURES |
1938 | 28 ********************************************************************/ |
29 | |
2448
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
30 #if defined(__LSB_VERSION__) |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
31 // Linux Standard Base (LSB) does not come with be16toh, be32toh, and |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
32 // be64toh |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
33 # define ORTHANC_HAS_BUILTIN_BYTE_SWAP 0 |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
34 # include <endian.h> |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
35 #elif defined(__linux__) || defined(__EMSCRIPTEN__) |
1971
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
36 # define ORTHANC_HAS_BUILTIN_BYTE_SWAP 1 |
1938 | 37 # include <endian.h> |
38 #endif | |
39 | |
40 | |
41 /******************************************************************** | |
42 ** WINDOWS ARCHITECTURES | |
43 ** | |
1950
533ff46e944b
return a single raw frame from DICOM videos
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1939
diff
changeset
|
44 ** On Windows x86, "host" will always be little-endian ("le"). |
1938 | 45 ********************************************************************/ |
46 | |
47 #if defined(_WIN32) | |
48 # if defined(_MSC_VER) | |
1971
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
49 // Visual Studio - http://msdn.microsoft.com/en-us/library/a3140177.aspx |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
50 # define ORTHANC_HAS_BUILTIN_BYTE_SWAP 1 |
1938 | 51 # define be16toh(x) _byteswap_ushort(x) |
52 # define be32toh(x) _byteswap_ulong(x) | |
53 # define be64toh(x) _byteswap_uint64(x) | |
1971
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
54 # elif (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
55 // MinGW >= 4.3 - Use builtin intrinsic for byte swapping |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
56 # define ORTHANC_HAS_BUILTIN_BYTE_SWAP 1 |
1938 | 57 # define be16toh(x) __builtin_bswap16(x) |
58 # define be32toh(x) __builtin_bswap32(x) | |
59 # define be64toh(x) __builtin_bswap64(x) | |
1971
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
60 # else |
2546 | 61 // MinGW <= 4.2, we must manually implement the byte swapping (*) |
1971
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
62 # define ORTHANC_HAS_BUILTIN_BYTE_SWAP 0 |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
63 # define be16toh(x) __orthanc_bswap16(x) |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
64 # define be32toh(x) __orthanc_bswap32(x) |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
65 # define be64toh(x) __orthanc_bswap64(x) |
1938 | 66 # endif |
67 | |
68 # define htobe16(x) be16toh(x) | |
69 # define htobe32(x) be32toh(x) | |
70 # define htobe64(x) be64toh(x) | |
71 | |
72 # define htole16(x) x | |
73 # define htole32(x) x | |
74 # define htole64(x) x | |
75 | |
76 # define le16toh(x) x | |
77 # define le32toh(x) x | |
78 # define le64toh(x) x | |
79 #endif | |
80 | |
81 | |
82 /******************************************************************** | |
83 ** FREEBSD ARCHITECTURES | |
84 ********************************************************************/ | |
85 | |
86 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) | |
1971
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
87 # define ORTHANC_HAS_BUILTIN_BYTE_SWAP 1 |
1938 | 88 # include <arpa/inet.h> |
89 #endif | |
90 | |
91 | |
92 /******************************************************************** | |
2459
98a04e75f15e
endianness in openbsd
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2448
diff
changeset
|
93 ** OPENBSD ARCHITECTURES |
98a04e75f15e
endianness in openbsd
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2448
diff
changeset
|
94 ********************************************************************/ |
98a04e75f15e
endianness in openbsd
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2448
diff
changeset
|
95 |
98a04e75f15e
endianness in openbsd
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2448
diff
changeset
|
96 #if defined(__OpenBSD__) |
98a04e75f15e
endianness in openbsd
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2448
diff
changeset
|
97 # define ORTHANC_HAS_BUILTIN_BYTE_SWAP 1 |
98a04e75f15e
endianness in openbsd
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2448
diff
changeset
|
98 # include <endian.h> |
98a04e75f15e
endianness in openbsd
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2448
diff
changeset
|
99 #endif |
98a04e75f15e
endianness in openbsd
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2448
diff
changeset
|
100 |
98a04e75f15e
endianness in openbsd
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2448
diff
changeset
|
101 |
98a04e75f15e
endianness in openbsd
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2448
diff
changeset
|
102 /******************************************************************** |
1938 | 103 ** APPLE ARCHITECTURES (including OS X) |
104 ********************************************************************/ | |
105 | |
106 #if defined(__APPLE__) | |
1971
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
107 # define ORTHANC_HAS_BUILTIN_BYTE_SWAP 1 |
1938 | 108 # include <libkern/OSByteOrder.h> |
109 # define be16toh(x) OSSwapBigToHostInt16(x) | |
110 # define be32toh(x) OSSwapBigToHostInt32(x) | |
111 # define be64toh(x) OSSwapBigToHostInt64(x) | |
112 | |
113 # define htobe16(x) OSSwapHostToBigInt16(x) | |
114 # define htobe32(x) OSSwapHostToBigInt32(x) | |
115 # define htobe64(x) OSSwapHostToBigInt64(x) | |
116 | |
117 # define htole16(x) OSSwapHostToLittleInt16(x) | |
118 # define htole32(x) OSSwapHostToLittleInt32(x) | |
119 # define htole64(x) OSSwapHostToLittleInt64(x) | |
120 | |
121 # define le16toh(x) OSSwapLittleToHostInt16(x) | |
122 # define le32toh(x) OSSwapLittleToHostInt32(x) | |
123 # define le64toh(x) OSSwapLittleToHostInt64(x) | |
124 #endif | |
1971
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
125 |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
126 |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
127 /******************************************************************** |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
128 ** PORTABLE (BUT SLOW) IMPLEMENTATION OF BYTE-SWAPPING |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
129 ********************************************************************/ |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
130 |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
131 #if ORTHANC_HAS_BUILTIN_BYTE_SWAP != 1 |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
132 |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
133 #include <stdint.h> |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
134 |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
135 static inline uint16_t __orthanc_bswap16(uint16_t a) |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
136 { |
2807
6356e2ceb493
Fix issue #99 (PamWriter test segfaults on alpine linux with gcc 6.4.0)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2707
diff
changeset
|
137 /** |
6356e2ceb493
Fix issue #99 (PamWriter test segfaults on alpine linux with gcc 6.4.0)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2707
diff
changeset
|
138 * Note that an alternative implementation was included in Orthanc |
6356e2ceb493
Fix issue #99 (PamWriter test segfaults on alpine linux with gcc 6.4.0)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2707
diff
changeset
|
139 * 1.4.0 and 1.4.1: |
6356e2ceb493
Fix issue #99 (PamWriter test segfaults on alpine linux with gcc 6.4.0)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2707
diff
changeset
|
140 * |
6356e2ceb493
Fix issue #99 (PamWriter test segfaults on alpine linux with gcc 6.4.0)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2707
diff
changeset
|
141 * # hg log -p -r 2706 |
6356e2ceb493
Fix issue #99 (PamWriter test segfaults on alpine linux with gcc 6.4.0)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2707
diff
changeset
|
142 * |
6356e2ceb493
Fix issue #99 (PamWriter test segfaults on alpine linux with gcc 6.4.0)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2707
diff
changeset
|
143 * This alternative implementation only hid an underlying problem |
6356e2ceb493
Fix issue #99 (PamWriter test segfaults on alpine linux with gcc 6.4.0)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2707
diff
changeset
|
144 * with pointer alignment on some architectures, and was thus |
6356e2ceb493
Fix issue #99 (PamWriter test segfaults on alpine linux with gcc 6.4.0)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2707
diff
changeset
|
145 * reverted. Check out issue #99: |
4476
c1f36fd13730
migrate remaining links to issues in bitbucket to mercurial server
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4437
diff
changeset
|
146 * https://bugs.orthanc-server.com/show_bug.cgi?id=99 |
2807
6356e2ceb493
Fix issue #99 (PamWriter test segfaults on alpine linux with gcc 6.4.0)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2707
diff
changeset
|
147 **/ |
6356e2ceb493
Fix issue #99 (PamWriter test segfaults on alpine linux with gcc 6.4.0)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2707
diff
changeset
|
148 return (a << 8) | (a >> 8); |
1971
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
149 } |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
150 |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
151 static inline uint32_t __orthanc_bswap32(uint32_t a) |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
152 { |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
153 const uint8_t* p = reinterpret_cast<const uint8_t*>(&a); |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
154 return (static_cast<uint32_t>(p[0]) << 24 | |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
155 static_cast<uint32_t>(p[1]) << 16 | |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
156 static_cast<uint32_t>(p[2]) << 8 | |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
157 static_cast<uint32_t>(p[3])); |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
158 } |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
159 |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
160 static inline uint64_t __orthanc_bswap64(uint64_t a) |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
161 { |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
162 const uint8_t* p = reinterpret_cast<const uint8_t*>(&a); |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
163 return (static_cast<uint64_t>(p[0]) << 56 | |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
164 static_cast<uint64_t>(p[1]) << 48 | |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
165 static_cast<uint64_t>(p[2]) << 40 | |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
166 static_cast<uint64_t>(p[3]) << 32 | |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
167 static_cast<uint64_t>(p[4]) << 24 | |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
168 static_cast<uint64_t>(p[5]) << 16 | |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
169 static_cast<uint64_t>(p[6]) << 8 | |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
170 static_cast<uint64_t>(p[7])); |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
171 } |
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
172 |
2546 | 173 #if defined(_WIN32) |
174 // Implemented above (*) | |
175 #elif defined(__BYTE_ORDER) && defined(__LITTLE_ENDIAN) && defined(__BIG_ENDIAN) | |
2448
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
176 # if __BYTE_ORDER == __LITTLE_ENDIAN |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
177 # define be16toh(x) __orthanc_bswap16(x) |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
178 # define be32toh(x) __orthanc_bswap32(x) |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
179 # define be64toh(x) __orthanc_bswap64(x) |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
180 # define htobe16(x) __orthanc_bswap16(x) |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
181 # define htobe32(x) __orthanc_bswap32(x) |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
182 # define htobe64(x) __orthanc_bswap64(x) |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
183 # define htole16(x) x |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
184 # define htole32(x) x |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
185 # define htole64(x) x |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
186 # define le16toh(x) x |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
187 # define le32toh(x) x |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
188 # define le64toh(x) x |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
189 # elif __BYTE_ORDER == __BIG_ENDIAN |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
190 # define be16toh(x) x |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
191 # define be32toh(x) x |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
192 # define be64toh(x) x |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
193 # define htobe16(x) x |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
194 # define htobe32(x) x |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
195 # define htobe64(x) x |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
196 # define htole16(x) __orthanc_bswap16(x) |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
197 # define htole32(x) __orthanc_bswap32(x) |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
198 # define htole64(x) __orthanc_bswap64(x) |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
199 # define le16toh(x) __orthanc_bswap16(x) |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
200 # define le32toh(x) __orthanc_bswap32(x) |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
201 # define le64toh(x) __orthanc_bswap64(x) |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
202 # else |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
203 # error Please support your platform here |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
204 # endif |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
205 #else |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
206 # error Please support your platform here |
1971
869a87c08673
fix for mingw <= 4.2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1950
diff
changeset
|
207 #endif |
2448
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
208 |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
209 #endif |