annotate intreadwrite.h @ 567:bd4052d9050c libavutil

Globally rename the header inclusion guard names. Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_".
author stefano
date Sun, 31 Aug 2008 07:39:47 +0000
parents 0d4beab5e3c9
children 880c6441f56a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
263
4a904af6d8f4 Add missing license headers.
diego
parents: 235
diff changeset
1 /*
4a904af6d8f4 Add missing license headers.
diego
parents: 235
diff changeset
2 * This file is part of FFmpeg.
4a904af6d8f4 Add missing license headers.
diego
parents: 235
diff changeset
3 *
4a904af6d8f4 Add missing license headers.
diego
parents: 235
diff changeset
4 * FFmpeg is free software; you can redistribute it and/or
4a904af6d8f4 Add missing license headers.
diego
parents: 235
diff changeset
5 * modify it under the terms of the GNU Lesser General Public
4a904af6d8f4 Add missing license headers.
diego
parents: 235
diff changeset
6 * License as published by the Free Software Foundation; either
4a904af6d8f4 Add missing license headers.
diego
parents: 235
diff changeset
7 * version 2.1 of the License, or (at your option) any later version.
4a904af6d8f4 Add missing license headers.
diego
parents: 235
diff changeset
8 *
4a904af6d8f4 Add missing license headers.
diego
parents: 235
diff changeset
9 * FFmpeg is distributed in the hope that it will be useful,
4a904af6d8f4 Add missing license headers.
diego
parents: 235
diff changeset
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
4a904af6d8f4 Add missing license headers.
diego
parents: 235
diff changeset
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
4a904af6d8f4 Add missing license headers.
diego
parents: 235
diff changeset
12 * Lesser General Public License for more details.
4a904af6d8f4 Add missing license headers.
diego
parents: 235
diff changeset
13 *
4a904af6d8f4 Add missing license headers.
diego
parents: 235
diff changeset
14 * You should have received a copy of the GNU Lesser General Public
4a904af6d8f4 Add missing license headers.
diego
parents: 235
diff changeset
15 * License along with FFmpeg; if not, write to the Free Software
4a904af6d8f4 Add missing license headers.
diego
parents: 235
diff changeset
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
4a904af6d8f4 Add missing license headers.
diego
parents: 235
diff changeset
17 */
4a904af6d8f4 Add missing license headers.
diego
parents: 235
diff changeset
18
567
bd4052d9050c Globally rename the header inclusion guard names.
stefano
parents: 525
diff changeset
19 #ifndef AVUTIL_INTREADWRITE_H
bd4052d9050c Globally rename the header inclusion guard names.
stefano
parents: 525
diff changeset
20 #define AVUTIL_INTREADWRITE_H
152
5b211d03227b Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff changeset
21
343
f21d1907d47c include all prerequisites in header files
mru
parents: 336
diff changeset
22 #include <stdint.h>
469
bdc8433d739e Add #include "config.h" to headers that need it.
diego
parents: 444
diff changeset
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
f21d1907d47c include all prerequisites in header files
mru
parents: 336
diff changeset
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
525
0d4beab5e3c9 intreadwrite: support DEC compiler __unaligned type qualifier
mru
parents: 524
diff changeset
40 #elif defined(__DECC)
0d4beab5e3c9 intreadwrite: support DEC compiler __unaligned type qualifier
mru
parents: 524
diff changeset
41
0d4beab5e3c9 intreadwrite: support DEC compiler __unaligned type qualifier
mru
parents: 524
diff changeset
42 #define AV_RN16(a) (*((const __unaligned uint16_t*)(a)))
0d4beab5e3c9 intreadwrite: support DEC compiler __unaligned type qualifier
mru
parents: 524
diff changeset
43 #define AV_RN32(a) (*((const __unaligned uint32_t*)(a)))
0d4beab5e3c9 intreadwrite: support DEC compiler __unaligned type qualifier
mru
parents: 524
diff changeset
44 #define AV_RN64(a) (*((const __unaligned uint64_t*)(a)))
0d4beab5e3c9 intreadwrite: support DEC compiler __unaligned type qualifier
mru
parents: 524
diff changeset
45
0d4beab5e3c9 intreadwrite: support DEC compiler __unaligned type qualifier
mru
parents: 524
diff changeset
46 #define AV_WN16(a, b) *((__unaligned uint16_t*)(a)) = (b)
0d4beab5e3c9 intreadwrite: support DEC compiler __unaligned type qualifier
mru
parents: 524
diff changeset
47 #define AV_WN32(a, b) *((__unaligned uint32_t*)(a)) = (b)
0d4beab5e3c9 intreadwrite: support DEC compiler __unaligned type qualifier
mru
parents: 524
diff changeset
48 #define AV_WN64(a, b) *((__unaligned uint64_t*)(a)) = (b)
0d4beab5e3c9 intreadwrite: support DEC compiler __unaligned type qualifier
mru
parents: 524
diff changeset
49
0d4beab5e3c9 intreadwrite: support DEC compiler __unaligned type qualifier
mru
parents: 524
diff changeset
50 #else
152
5b211d03227b Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff changeset
51
444
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
52 #define AV_RN16(a) (*((const uint16_t*)(a)))
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
53 #define AV_RN32(a) (*((const uint32_t*)(a)))
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
54 #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
55
371
30e766822b5a * renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents: 350
diff changeset
56 #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
57 #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
58 #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
59
5b211d03227b Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff changeset
60 #endif /* !__GNUC__ */
5b211d03227b Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff changeset
61
5b211d03227b Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff changeset
62 /* endian macros */
444
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
63 #define AV_RB8(x) (((const uint8_t*)(x))[0])
336
f340106d09ac Proper fix for r8963
ramiro
parents: 335
diff changeset
64 #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
65
326
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
66 #define AV_RL8(x) AV_RB8(x)
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
67 #define AV_WL8(p, d) AV_WB8(p, d)
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
68
328
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
69 #ifdef HAVE_FAST_UNALIGNED
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
70 # ifdef WORDS_BIGENDIAN
371
30e766822b5a * renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents: 350
diff changeset
71 # 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
72 # define AV_WB16(p, d) AV_WN16(p, d)
328
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
73
371
30e766822b5a * renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents: 350
diff changeset
74 # 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
75 # define AV_WL16(p, d) AV_WN16(p, bswap_16(d))
524
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
76
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
77 # define AV_RB32(x) AV_RN32(x)
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
78 # define AV_WB32(p, d) AV_WN32(p, d)
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
79
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
80 # define AV_RL32(x) bswap_32(AV_RN32(x))
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
81 # define AV_WL32(p, d) AV_WN32(p, bswap_32(d))
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
82
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
83 # define AV_RB64(x) AV_RN64(x)
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
84 # define AV_WB64(p, d) AV_WN64(p, d)
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
85
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
86 # define AV_RL64(x) bswap_64(AV_RN64(x))
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
87 # define AV_WL64(p, d) AV_WN64(p, bswap_64(d))
328
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
88 # else /* WORDS_BIGENDIAN */
371
30e766822b5a * renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents: 350
diff changeset
89 # 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
90 # define AV_WB16(p, d) AV_WN16(p, bswap_16(d))
328
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
91
371
30e766822b5a * renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents: 350
diff changeset
92 # 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
93 # define AV_WL16(p, d) AV_WN16(p, d)
524
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
94
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
95 # define AV_RB32(x) bswap_32(AV_RN32(x))
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
96 # define AV_WB32(p, d) AV_WN32(p, bswap_32(d))
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
97
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
98 # define AV_RL32(x) AV_RN32(x)
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
99 # define AV_WL32(p, d) AV_WN32(p, d)
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
100
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
101 # define AV_RB64(x) bswap_64(AV_RN64(x))
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
102 # define AV_WB64(p, d) AV_WN64(p, bswap_64(d))
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
103
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
104 # define AV_RL64(x) AV_RN64(x)
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
105 # define AV_WL64(p, d) AV_WN64(p, d)
328
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
106 # endif
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
107 #else /* HAVE_FAST_UNALIGNED */
444
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
108 #define AV_RB16(x) ((((const uint8_t*)(x))[0] << 8) | ((const uint8_t*)(x))[1])
336
f340106d09ac Proper fix for r8963
ramiro
parents: 335
diff changeset
109 #define AV_WB16(p, d) do { \
235
ee010796c631 simplify and remove useless index in AV_W*
michael
parents: 232
diff changeset
110 ((uint8_t*)(p))[1] = (d); \
336
f340106d09ac Proper fix for r8963
ramiro
parents: 335
diff changeset
111 ((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
112
444
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
113 #define AV_RL16(x) ((((const uint8_t*)(x))[1] << 8) | \
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
114 ((const uint8_t*)(x))[0])
336
f340106d09ac Proper fix for r8963
ramiro
parents: 335
diff changeset
115 #define AV_WL16(p, d) do { \
326
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
116 ((uint8_t*)(p))[0] = (d); \
336
f340106d09ac Proper fix for r8963
ramiro
parents: 335
diff changeset
117 ((uint8_t*)(p))[1] = (d)>>8; } while(0)
326
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
118
444
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
119 #define AV_RB32(x) ((((const uint8_t*)(x))[0] << 24) | \
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
120 (((const uint8_t*)(x))[1] << 16) | \
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
121 (((const uint8_t*)(x))[2] << 8) | \
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
122 ((const uint8_t*)(x))[3])
336
f340106d09ac Proper fix for r8963
ramiro
parents: 335
diff changeset
123 #define AV_WB32(p, d) do { \
235
ee010796c631 simplify and remove useless index in AV_W*
michael
parents: 232
diff changeset
124 ((uint8_t*)(p))[3] = (d); \
ee010796c631 simplify and remove useless index in AV_W*
michael
parents: 232
diff changeset
125 ((uint8_t*)(p))[2] = (d)>>8; \
ee010796c631 simplify and remove useless index in AV_W*
michael
parents: 232
diff changeset
126 ((uint8_t*)(p))[1] = (d)>>16; \
336
f340106d09ac Proper fix for r8963
ramiro
parents: 335
diff changeset
127 ((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
128
444
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
129 #define AV_RL32(x) ((((const uint8_t*)(x))[3] << 24) | \
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
130 (((const uint8_t*)(x))[2] << 16) | \
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
131 (((const uint8_t*)(x))[1] << 8) | \
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
132 ((const uint8_t*)(x))[0])
336
f340106d09ac Proper fix for r8963
ramiro
parents: 335
diff changeset
133 #define AV_WL32(p, d) do { \
235
ee010796c631 simplify and remove useless index in AV_W*
michael
parents: 232
diff changeset
134 ((uint8_t*)(p))[0] = (d); \
ee010796c631 simplify and remove useless index in AV_W*
michael
parents: 232
diff changeset
135 ((uint8_t*)(p))[1] = (d)>>8; \
ee010796c631 simplify and remove useless index in AV_W*
michael
parents: 232
diff changeset
136 ((uint8_t*)(p))[2] = (d)>>16; \
336
f340106d09ac Proper fix for r8963
ramiro
parents: 335
diff changeset
137 ((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
138
444
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
139 #define AV_RB64(x) (((uint64_t)((const uint8_t*)(x))[0] << 56) | \
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
140 ((uint64_t)((const uint8_t*)(x))[1] << 48) | \
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
141 ((uint64_t)((const uint8_t*)(x))[2] << 40) | \
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
142 ((uint64_t)((const uint8_t*)(x))[3] << 32) | \
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
143 ((uint64_t)((const uint8_t*)(x))[4] << 24) | \
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
144 ((uint64_t)((const uint8_t*)(x))[5] << 16) | \
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
145 ((uint64_t)((const uint8_t*)(x))[6] << 8) | \
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
146 (uint64_t)((const uint8_t*)(x))[7])
336
f340106d09ac Proper fix for r8963
ramiro
parents: 335
diff changeset
147 #define AV_WB64(p, d) do { \
335
62dad9741857 add AV_[RW][BL]64 support
ivo
parents: 328
diff changeset
148 ((uint8_t*)(p))[7] = (d); \
62dad9741857 add AV_[RW][BL]64 support
ivo
parents: 328
diff changeset
149 ((uint8_t*)(p))[6] = (d)>>8; \
62dad9741857 add AV_[RW][BL]64 support
ivo
parents: 328
diff changeset
150 ((uint8_t*)(p))[5] = (d)>>16; \
62dad9741857 add AV_[RW][BL]64 support
ivo
parents: 328
diff changeset
151 ((uint8_t*)(p))[4] = (d)>>24; \
62dad9741857 add AV_[RW][BL]64 support
ivo
parents: 328
diff changeset
152 ((uint8_t*)(p))[3] = (d)>>32; \
62dad9741857 add AV_[RW][BL]64 support
ivo
parents: 328
diff changeset
153 ((uint8_t*)(p))[2] = (d)>>40; \
62dad9741857 add AV_[RW][BL]64 support
ivo
parents: 328
diff changeset
154 ((uint8_t*)(p))[1] = (d)>>48; \
336
f340106d09ac Proper fix for r8963
ramiro
parents: 335
diff changeset
155 ((uint8_t*)(p))[0] = (d)>>56; } while(0)
335
62dad9741857 add AV_[RW][BL]64 support
ivo
parents: 328
diff changeset
156
444
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
157 #define AV_RL64(x) (((uint64_t)((const uint8_t*)(x))[7] << 56) | \
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
158 ((uint64_t)((const uint8_t*)(x))[6] << 48) | \
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
159 ((uint64_t)((const uint8_t*)(x))[5] << 40) | \
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
160 ((uint64_t)((const uint8_t*)(x))[4] << 32) | \
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
161 ((uint64_t)((const uint8_t*)(x))[3] << 24) | \
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
162 ((uint64_t)((const uint8_t*)(x))[2] << 16) | \
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
163 ((uint64_t)((const uint8_t*)(x))[1] << 8) | \
f771a4fd3534 Do not cast const away.
michael
parents: 392
diff changeset
164 (uint64_t)((const uint8_t*)(x))[0])
336
f340106d09ac Proper fix for r8963
ramiro
parents: 335
diff changeset
165 #define AV_WL64(p, d) do { \
335
62dad9741857 add AV_[RW][BL]64 support
ivo
parents: 328
diff changeset
166 ((uint8_t*)(p))[0] = (d); \
62dad9741857 add AV_[RW][BL]64 support
ivo
parents: 328
diff changeset
167 ((uint8_t*)(p))[1] = (d)>>8; \
62dad9741857 add AV_[RW][BL]64 support
ivo
parents: 328
diff changeset
168 ((uint8_t*)(p))[2] = (d)>>16; \
62dad9741857 add AV_[RW][BL]64 support
ivo
parents: 328
diff changeset
169 ((uint8_t*)(p))[3] = (d)>>24; \
62dad9741857 add AV_[RW][BL]64 support
ivo
parents: 328
diff changeset
170 ((uint8_t*)(p))[4] = (d)>>32; \
62dad9741857 add AV_[RW][BL]64 support
ivo
parents: 328
diff changeset
171 ((uint8_t*)(p))[5] = (d)>>40; \
62dad9741857 add AV_[RW][BL]64 support
ivo
parents: 328
diff changeset
172 ((uint8_t*)(p))[6] = (d)>>48; \
336
f340106d09ac Proper fix for r8963
ramiro
parents: 335
diff changeset
173 ((uint8_t*)(p))[7] = (d)>>56; } while(0)
524
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
174 #endif /* HAVE_FAST_UNALIGNED */
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
175
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
176 #define AV_RB24(x) ((((const uint8_t*)(x))[0] << 16) | \
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
177 (((const uint8_t*)(x))[1] << 8) | \
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
178 ((const uint8_t*)(x))[2])
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
179 #define AV_WB24(p, d) do { \
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
180 ((uint8_t*)(p))[2] = (d); \
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
181 ((uint8_t*)(p))[1] = (d)>>8; \
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
182 ((uint8_t*)(p))[0] = (d)>>16; } while(0)
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
183
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
184 #define AV_RL24(x) ((((const uint8_t*)(x))[2] << 16) | \
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
185 (((const uint8_t*)(x))[1] << 8) | \
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
186 ((const uint8_t*)(x))[0])
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
187 #define AV_WL24(p, d) do { \
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
188 ((uint8_t*)(p))[0] = (d); \
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
189 ((uint8_t*)(p))[1] = (d)>>8; \
3cb148a1c8cd Rearrange AV_[RW][BL]*() macros
mru
parents: 469
diff changeset
190 ((uint8_t*)(p))[2] = (d)>>16; } while(0)
335
62dad9741857 add AV_[RW][BL]64 support
ivo
parents: 328
diff changeset
191
567
bd4052d9050c Globally rename the header inclusion guard names.
stefano
parents: 525
diff changeset
192 #endif /* AVUTIL_INTREADWRITE_H */