Mercurial > libavutil.hg
annotate intreadwrite.h @ 524:3cb148a1c8cd libavutil
Rearrange AV_[RW][BL]*() macros
| author | mru |
|---|---|
| date | Thu, 17 Jul 2008 18:42:19 +0000 |
| parents | bdc8433d739e |
| children | 0d4beab5e3c9 |
| rev | line source |
|---|---|
| 263 | 1 /* |
| 2 * This file is part of FFmpeg. | |
| 3 * | |
| 4 * FFmpeg is free software; you can redistribute it and/or | |
| 5 * modify it under the terms of the GNU Lesser General Public | |
| 6 * License as published by the Free Software Foundation; either | |
| 7 * version 2.1 of the License, or (at your option) any later version. | |
| 8 * | |
| 9 * FFmpeg is distributed in the hope that it will be useful, | |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 12 * Lesser General Public License for more details. | |
| 13 * | |
| 14 * You should have received a copy of the GNU Lesser General Public | |
| 15 * License along with FFmpeg; if not, write to the Free Software | |
| 16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
| 17 */ | |
| 18 | |
| 392 | 19 #ifndef FFMPEG_INTREADWRITE_H |
| 20 #define FFMPEG_INTREADWRITE_H | |
|
152
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
21 |
| 343 | 22 #include <stdint.h> |
| 469 | 23 #include "config.h" |
|
350
c2034e89e9a2
intreadwrite.h needs bswap.h if HAVE_FAST_UNALIGNED is set, so include it.
reimar
parents:
343
diff
changeset
|
24 #include "bswap.h" |
| 343 | 25 |
|
152
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
26 #ifdef __GNUC__ |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
27 |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
28 struct unaligned_64 { uint64_t l; } __attribute__((packed)); |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
29 struct unaligned_32 { uint32_t l; } __attribute__((packed)); |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
30 struct unaligned_16 { uint16_t l; } __attribute__((packed)); |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
31 |
|
371
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
32 #define AV_RN16(a) (((const struct unaligned_16 *) (a))->l) |
|
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
33 #define AV_RN32(a) (((const struct unaligned_32 *) (a))->l) |
|
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
34 #define AV_RN64(a) (((const struct unaligned_64 *) (a))->l) |
|
152
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
35 |
|
371
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
36 #define AV_WN16(a, b) (((struct unaligned_16 *) (a))->l) = (b) |
|
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
37 #define AV_WN32(a, b) (((struct unaligned_32 *) (a))->l) = (b) |
|
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
38 #define AV_WN64(a, b) (((struct unaligned_64 *) (a))->l) = (b) |
|
152
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
39 |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
40 #else /* __GNUC__ */ |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
41 |
| 444 | 42 #define AV_RN16(a) (*((const uint16_t*)(a))) |
| 43 #define AV_RN32(a) (*((const uint32_t*)(a))) | |
| 44 #define AV_RN64(a) (*((const uint64_t*)(a))) | |
|
152
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
45 |
|
371
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
46 #define AV_WN16(a, b) *((uint16_t*)(a)) = (b) |
|
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
47 #define AV_WN32(a, b) *((uint32_t*)(a)) = (b) |
|
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
48 #define AV_WN64(a, b) *((uint64_t*)(a)) = (b) |
|
152
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
49 |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
50 #endif /* !__GNUC__ */ |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
51 |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
52 /* endian macros */ |
| 444 | 53 #define AV_RB8(x) (((const uint8_t*)(x))[0]) |
| 336 | 54 #define AV_WB8(p, d) do { ((uint8_t*)(p))[0] = (d); } while(0) |
|
232
9845a508ffbd
add AV_WB/WL for lswriting, similar to AV_RB/RL (also increment version)
alex
parents:
231
diff
changeset
|
55 |
|
326
46b4da5bf9ed
cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents:
282
diff
changeset
|
56 #define AV_RL8(x) AV_RB8(x) |
|
46b4da5bf9ed
cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents:
282
diff
changeset
|
57 #define AV_WL8(p, d) AV_WB8(p, d) |
|
46b4da5bf9ed
cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents:
282
diff
changeset
|
58 |
| 328 | 59 #ifdef HAVE_FAST_UNALIGNED |
| 60 # ifdef WORDS_BIGENDIAN | |
|
371
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
61 # define AV_RB16(x) AV_RN16(x) |
|
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
62 # define AV_WB16(p, d) AV_WN16(p, d) |
| 328 | 63 |
|
371
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
64 # define AV_RL16(x) bswap_16(AV_RN16(x)) |
|
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
65 # define AV_WL16(p, d) AV_WN16(p, bswap_16(d)) |
| 524 | 66 |
| 67 # define AV_RB32(x) AV_RN32(x) | |
| 68 # define AV_WB32(p, d) AV_WN32(p, d) | |
| 69 | |
| 70 # define AV_RL32(x) bswap_32(AV_RN32(x)) | |
| 71 # define AV_WL32(p, d) AV_WN32(p, bswap_32(d)) | |
| 72 | |
| 73 # define AV_RB64(x) AV_RN64(x) | |
| 74 # define AV_WB64(p, d) AV_WN64(p, d) | |
| 75 | |
| 76 # define AV_RL64(x) bswap_64(AV_RN64(x)) | |
| 77 # define AV_WL64(p, d) AV_WN64(p, bswap_64(d)) | |
| 328 | 78 # else /* WORDS_BIGENDIAN */ |
|
371
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
79 # define AV_RB16(x) bswap_16(AV_RN16(x)) |
|
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
80 # define AV_WB16(p, d) AV_WN16(p, bswap_16(d)) |
| 328 | 81 |
|
371
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
82 # define AV_RL16(x) AV_RN16(x) |
|
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
83 # define AV_WL16(p, d) AV_WN16(p, d) |
| 524 | 84 |
| 85 # define AV_RB32(x) bswap_32(AV_RN32(x)) | |
| 86 # define AV_WB32(p, d) AV_WN32(p, bswap_32(d)) | |
| 87 | |
| 88 # define AV_RL32(x) AV_RN32(x) | |
| 89 # define AV_WL32(p, d) AV_WN32(p, d) | |
| 90 | |
| 91 # define AV_RB64(x) bswap_64(AV_RN64(x)) | |
| 92 # define AV_WB64(p, d) AV_WN64(p, bswap_64(d)) | |
| 93 | |
| 94 # define AV_RL64(x) AV_RN64(x) | |
| 95 # define AV_WL64(p, d) AV_WN64(p, d) | |
| 328 | 96 # endif |
| 97 #else /* HAVE_FAST_UNALIGNED */ | |
| 444 | 98 #define AV_RB16(x) ((((const uint8_t*)(x))[0] << 8) | ((const uint8_t*)(x))[1]) |
| 336 | 99 #define AV_WB16(p, d) do { \ |
| 235 | 100 ((uint8_t*)(p))[1] = (d); \ |
| 336 | 101 ((uint8_t*)(p))[0] = (d)>>8; } while(0) |
|
232
9845a508ffbd
add AV_WB/WL for lswriting, similar to AV_RB/RL (also increment version)
alex
parents:
231
diff
changeset
|
102 |
| 444 | 103 #define AV_RL16(x) ((((const uint8_t*)(x))[1] << 8) | \ |
| 104 ((const uint8_t*)(x))[0]) | |
| 336 | 105 #define AV_WL16(p, d) do { \ |
|
326
46b4da5bf9ed
cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents:
282
diff
changeset
|
106 ((uint8_t*)(p))[0] = (d); \ |
| 336 | 107 ((uint8_t*)(p))[1] = (d)>>8; } while(0) |
|
326
46b4da5bf9ed
cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents:
282
diff
changeset
|
108 |
| 444 | 109 #define AV_RB32(x) ((((const uint8_t*)(x))[0] << 24) | \ |
| 110 (((const uint8_t*)(x))[1] << 16) | \ | |
| 111 (((const uint8_t*)(x))[2] << 8) | \ | |
| 112 ((const uint8_t*)(x))[3]) | |
| 336 | 113 #define AV_WB32(p, d) do { \ |
| 235 | 114 ((uint8_t*)(p))[3] = (d); \ |
| 115 ((uint8_t*)(p))[2] = (d)>>8; \ | |
| 116 ((uint8_t*)(p))[1] = (d)>>16; \ | |
| 336 | 117 ((uint8_t*)(p))[0] = (d)>>24; } while(0) |
|
232
9845a508ffbd
add AV_WB/WL for lswriting, similar to AV_RB/RL (also increment version)
alex
parents:
231
diff
changeset
|
118 |
| 444 | 119 #define AV_RL32(x) ((((const uint8_t*)(x))[3] << 24) | \ |
| 120 (((const uint8_t*)(x))[2] << 16) | \ | |
| 121 (((const uint8_t*)(x))[1] << 8) | \ | |
| 122 ((const uint8_t*)(x))[0]) | |
| 336 | 123 #define AV_WL32(p, d) do { \ |
| 235 | 124 ((uint8_t*)(p))[0] = (d); \ |
| 125 ((uint8_t*)(p))[1] = (d)>>8; \ | |
| 126 ((uint8_t*)(p))[2] = (d)>>16; \ | |
| 336 | 127 ((uint8_t*)(p))[3] = (d)>>24; } while(0) |
|
152
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
128 |
| 444 | 129 #define AV_RB64(x) (((uint64_t)((const uint8_t*)(x))[0] << 56) | \ |
| 130 ((uint64_t)((const uint8_t*)(x))[1] << 48) | \ | |
| 131 ((uint64_t)((const uint8_t*)(x))[2] << 40) | \ | |
| 132 ((uint64_t)((const uint8_t*)(x))[3] << 32) | \ | |
| 133 ((uint64_t)((const uint8_t*)(x))[4] << 24) | \ | |
| 134 ((uint64_t)((const uint8_t*)(x))[5] << 16) | \ | |
| 135 ((uint64_t)((const uint8_t*)(x))[6] << 8) | \ | |
| 136 (uint64_t)((const uint8_t*)(x))[7]) | |
| 336 | 137 #define AV_WB64(p, d) do { \ |
| 335 | 138 ((uint8_t*)(p))[7] = (d); \ |
| 139 ((uint8_t*)(p))[6] = (d)>>8; \ | |
| 140 ((uint8_t*)(p))[5] = (d)>>16; \ | |
| 141 ((uint8_t*)(p))[4] = (d)>>24; \ | |
| 142 ((uint8_t*)(p))[3] = (d)>>32; \ | |
| 143 ((uint8_t*)(p))[2] = (d)>>40; \ | |
| 144 ((uint8_t*)(p))[1] = (d)>>48; \ | |
| 336 | 145 ((uint8_t*)(p))[0] = (d)>>56; } while(0) |
| 335 | 146 |
| 444 | 147 #define AV_RL64(x) (((uint64_t)((const uint8_t*)(x))[7] << 56) | \ |
| 148 ((uint64_t)((const uint8_t*)(x))[6] << 48) | \ | |
| 149 ((uint64_t)((const uint8_t*)(x))[5] << 40) | \ | |
| 150 ((uint64_t)((const uint8_t*)(x))[4] << 32) | \ | |
| 151 ((uint64_t)((const uint8_t*)(x))[3] << 24) | \ | |
| 152 ((uint64_t)((const uint8_t*)(x))[2] << 16) | \ | |
| 153 ((uint64_t)((const uint8_t*)(x))[1] << 8) | \ | |
| 154 (uint64_t)((const uint8_t*)(x))[0]) | |
| 336 | 155 #define AV_WL64(p, d) do { \ |
| 335 | 156 ((uint8_t*)(p))[0] = (d); \ |
| 157 ((uint8_t*)(p))[1] = (d)>>8; \ | |
| 158 ((uint8_t*)(p))[2] = (d)>>16; \ | |
| 159 ((uint8_t*)(p))[3] = (d)>>24; \ | |
| 160 ((uint8_t*)(p))[4] = (d)>>32; \ | |
| 161 ((uint8_t*)(p))[5] = (d)>>40; \ | |
| 162 ((uint8_t*)(p))[6] = (d)>>48; \ | |
| 336 | 163 ((uint8_t*)(p))[7] = (d)>>56; } while(0) |
| 524 | 164 #endif /* HAVE_FAST_UNALIGNED */ |
| 165 | |
| 166 #define AV_RB24(x) ((((const uint8_t*)(x))[0] << 16) | \ | |
| 167 (((const uint8_t*)(x))[1] << 8) | \ | |
| 168 ((const uint8_t*)(x))[2]) | |
| 169 #define AV_WB24(p, d) do { \ | |
| 170 ((uint8_t*)(p))[2] = (d); \ | |
| 171 ((uint8_t*)(p))[1] = (d)>>8; \ | |
| 172 ((uint8_t*)(p))[0] = (d)>>16; } while(0) | |
| 173 | |
| 174 #define AV_RL24(x) ((((const uint8_t*)(x))[2] << 16) | \ | |
| 175 (((const uint8_t*)(x))[1] << 8) | \ | |
| 176 ((const uint8_t*)(x))[0]) | |
| 177 #define AV_WL24(p, d) do { \ | |
| 178 ((uint8_t*)(p))[0] = (d); \ | |
| 179 ((uint8_t*)(p))[1] = (d)>>8; \ | |
| 180 ((uint8_t*)(p))[2] = (d)>>16; } while(0) | |
| 335 | 181 |
| 392 | 182 #endif /* FFMPEG_INTREADWRITE_H */ |
