Mercurial > libavutil.hg
annotate intreadwrite.h @ 392:d0f3bb6e367e libavutil
Add FFMPEG_ prefix to all multiple inclusion guards.
| author | diego |
|---|---|
| date | Wed, 17 Oct 2007 09:37:46 +0000 |
| parents | 30e766822b5a |
| children | f771a4fd3534 |
| 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> |
|
350
c2034e89e9a2
intreadwrite.h needs bswap.h if HAVE_FAST_UNALIGNED is set, so include it.
reimar
parents:
343
diff
changeset
|
23 #include "bswap.h" |
| 343 | 24 |
|
152
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
25 #ifdef __GNUC__ |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
26 |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
27 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
|
28 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
|
29 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
|
30 |
|
371
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
31 #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
|
32 #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
|
33 #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
|
34 |
|
371
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
35 #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
|
36 #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
|
37 #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
|
38 |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
39 #else /* __GNUC__ */ |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
40 |
|
371
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
41 #define AV_RN16(a) (*((uint16_t*)(a))) |
|
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
42 #define AV_RN32(a) (*((uint32_t*)(a))) |
|
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
43 #define AV_RN64(a) (*((uint64_t*)(a))) |
|
152
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
44 |
|
371
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
45 #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
|
46 #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
|
47 #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
|
48 |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
49 #endif /* !__GNUC__ */ |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
50 |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
51 /* endian macros */ |
|
326
46b4da5bf9ed
cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents:
282
diff
changeset
|
52 #define AV_RB8(x) (((uint8_t*)(x))[0]) |
| 336 | 53 #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
|
54 |
|
326
46b4da5bf9ed
cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents:
282
diff
changeset
|
55 #define AV_RL8(x) AV_RB8(x) |
|
46b4da5bf9ed
cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents:
282
diff
changeset
|
56 #define AV_WL8(p, d) AV_WB8(p, d) |
|
46b4da5bf9ed
cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents:
282
diff
changeset
|
57 |
| 328 | 58 #ifdef HAVE_FAST_UNALIGNED |
| 59 # ifdef WORDS_BIGENDIAN | |
|
371
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
60 # 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
|
61 # define AV_WB16(p, d) AV_WN16(p, d) |
| 328 | 62 |
|
371
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
63 # 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
|
64 # define AV_WL16(p, d) AV_WN16(p, bswap_16(d)) |
| 328 | 65 # else /* WORDS_BIGENDIAN */ |
|
371
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
66 # 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
|
67 # define AV_WB16(p, d) AV_WN16(p, bswap_16(d)) |
| 328 | 68 |
|
371
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
69 # 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
|
70 # define AV_WL16(p, d) AV_WN16(p, d) |
| 328 | 71 # endif |
| 72 #else /* HAVE_FAST_UNALIGNED */ | |
|
326
46b4da5bf9ed
cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents:
282
diff
changeset
|
73 #define AV_RB16(x) ((((uint8_t*)(x))[0] << 8) | ((uint8_t*)(x))[1]) |
| 336 | 74 #define AV_WB16(p, d) do { \ |
| 235 | 75 ((uint8_t*)(p))[1] = (d); \ |
| 336 | 76 ((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
|
77 |
|
326
46b4da5bf9ed
cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents:
282
diff
changeset
|
78 #define AV_RL16(x) ((((uint8_t*)(x))[1] << 8) | \ |
|
46b4da5bf9ed
cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents:
282
diff
changeset
|
79 ((uint8_t*)(x))[0]) |
| 336 | 80 #define AV_WL16(p, d) do { \ |
|
326
46b4da5bf9ed
cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents:
282
diff
changeset
|
81 ((uint8_t*)(p))[0] = (d); \ |
| 336 | 82 ((uint8_t*)(p))[1] = (d)>>8; } while(0) |
| 328 | 83 #endif |
|
326
46b4da5bf9ed
cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents:
282
diff
changeset
|
84 |
|
46b4da5bf9ed
cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents:
282
diff
changeset
|
85 #define AV_RB24(x) ((((uint8_t*)(x))[0] << 16) | \ |
|
46b4da5bf9ed
cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents:
282
diff
changeset
|
86 (((uint8_t*)(x))[1] << 8) | \ |
|
46b4da5bf9ed
cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents:
282
diff
changeset
|
87 ((uint8_t*)(x))[2]) |
| 336 | 88 #define AV_WB24(p, d) do { \ |
| 269 | 89 ((uint8_t*)(p))[2] = (d); \ |
| 90 ((uint8_t*)(p))[1] = (d)>>8; \ | |
| 336 | 91 ((uint8_t*)(p))[0] = (d)>>16; } while(0) |
| 269 | 92 |
|
326
46b4da5bf9ed
cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents:
282
diff
changeset
|
93 #define AV_RL24(x) ((((uint8_t*)(x))[2] << 16) | \ |
|
46b4da5bf9ed
cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents:
282
diff
changeset
|
94 (((uint8_t*)(x))[1] << 8) | \ |
|
46b4da5bf9ed
cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents:
282
diff
changeset
|
95 ((uint8_t*)(x))[0]) |
| 336 | 96 #define AV_WL24(p, d) do { \ |
|
326
46b4da5bf9ed
cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents:
282
diff
changeset
|
97 ((uint8_t*)(p))[0] = (d); \ |
|
46b4da5bf9ed
cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents:
282
diff
changeset
|
98 ((uint8_t*)(p))[1] = (d)>>8; \ |
| 336 | 99 ((uint8_t*)(p))[2] = (d)>>16; } while(0) |
|
326
46b4da5bf9ed
cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents:
282
diff
changeset
|
100 |
| 328 | 101 #ifdef HAVE_FAST_UNALIGNED |
| 102 # ifdef WORDS_BIGENDIAN | |
|
371
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
103 # define AV_RB32(x) AV_RN32(x) |
|
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
104 # define AV_WB32(p, d) AV_WN32(p, d) |
| 328 | 105 |
|
371
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
106 # define AV_RL32(x) bswap_32(AV_RN32(x)) |
|
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
107 # define AV_WL32(p, d) AV_WN32(p, bswap_32(d)) |
| 328 | 108 # else /* WORDS_BIGENDIAN */ |
|
371
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
109 # define AV_RB32(x) bswap_32(AV_RN32(x)) |
|
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
110 # define AV_WB32(p, d) AV_WN32(p, bswap_32(d)) |
| 328 | 111 |
|
371
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
112 # define AV_RL32(x) AV_RN32(x) |
|
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
113 # define AV_WL32(p, d) AV_WN32(p, d) |
| 328 | 114 # endif |
| 115 #else /* HAVE_FAST_UNALIGNED */ | |
|
326
46b4da5bf9ed
cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents:
282
diff
changeset
|
116 #define AV_RB32(x) ((((uint8_t*)(x))[0] << 24) | \ |
|
46b4da5bf9ed
cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents:
282
diff
changeset
|
117 (((uint8_t*)(x))[1] << 16) | \ |
|
46b4da5bf9ed
cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents:
282
diff
changeset
|
118 (((uint8_t*)(x))[2] << 8) | \ |
|
46b4da5bf9ed
cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents:
282
diff
changeset
|
119 ((uint8_t*)(x))[3]) |
| 336 | 120 #define AV_WB32(p, d) do { \ |
| 235 | 121 ((uint8_t*)(p))[3] = (d); \ |
| 122 ((uint8_t*)(p))[2] = (d)>>8; \ | |
| 123 ((uint8_t*)(p))[1] = (d)>>16; \ | |
| 336 | 124 ((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
|
125 |
|
326
46b4da5bf9ed
cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents:
282
diff
changeset
|
126 #define AV_RL32(x) ((((uint8_t*)(x))[3] << 24) | \ |
|
46b4da5bf9ed
cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents:
282
diff
changeset
|
127 (((uint8_t*)(x))[2] << 16) | \ |
|
46b4da5bf9ed
cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents:
282
diff
changeset
|
128 (((uint8_t*)(x))[1] << 8) | \ |
| 282 | 129 ((uint8_t*)(x))[0]) |
| 336 | 130 #define AV_WL32(p, d) do { \ |
| 235 | 131 ((uint8_t*)(p))[0] = (d); \ |
| 132 ((uint8_t*)(p))[1] = (d)>>8; \ | |
| 133 ((uint8_t*)(p))[2] = (d)>>16; \ | |
| 336 | 134 ((uint8_t*)(p))[3] = (d)>>24; } while(0) |
| 328 | 135 #endif |
|
152
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
136 |
| 335 | 137 #ifdef HAVE_FAST_UNALIGNED |
| 138 # ifdef WORDS_BIGENDIAN | |
|
371
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
139 # define AV_RB64(x) AV_RN64(x) |
|
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
140 # define AV_WB64(p, d) AV_WN64(p, d) |
| 335 | 141 |
|
371
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
142 # define AV_RL64(x) bswap_64(AV_RN64(x)) |
|
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
143 # define AV_WL64(p, d) AV_WN64(p, bswap_64(d)) |
| 335 | 144 # else /* WORDS_BIGENDIAN */ |
|
371
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
145 # define AV_RB64(x) bswap_64(AV_RN64(x)) |
|
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
146 # define AV_WB64(p, d) AV_WN64(p, bswap_64(d)) |
| 335 | 147 |
|
371
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
148 # define AV_RL64(x) AV_RN64(x) |
|
30e766822b5a
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
350
diff
changeset
|
149 # define AV_WL64(p, d) AV_WN64(p, d) |
| 335 | 150 # endif |
| 151 #else /* HAVE_FAST_UNALIGNED */ | |
| 152 #define AV_RB64(x) (((uint64_t)((uint8_t*)(x))[0] << 56) | \ | |
| 153 ((uint64_t)((uint8_t*)(x))[1] << 48) | \ | |
| 154 ((uint64_t)((uint8_t*)(x))[2] << 40) | \ | |
| 155 ((uint64_t)((uint8_t*)(x))[3] << 32) | \ | |
| 156 ((uint64_t)((uint8_t*)(x))[4] << 24) | \ | |
| 157 ((uint64_t)((uint8_t*)(x))[5] << 16) | \ | |
| 158 ((uint64_t)((uint8_t*)(x))[6] << 8) | \ | |
| 159 (uint64_t)((uint8_t*)(x))[7]) | |
| 336 | 160 #define AV_WB64(p, d) do { \ |
| 335 | 161 ((uint8_t*)(p))[7] = (d); \ |
| 162 ((uint8_t*)(p))[6] = (d)>>8; \ | |
| 163 ((uint8_t*)(p))[5] = (d)>>16; \ | |
| 164 ((uint8_t*)(p))[4] = (d)>>24; \ | |
| 165 ((uint8_t*)(p))[3] = (d)>>32; \ | |
| 166 ((uint8_t*)(p))[2] = (d)>>40; \ | |
| 167 ((uint8_t*)(p))[1] = (d)>>48; \ | |
| 336 | 168 ((uint8_t*)(p))[0] = (d)>>56; } while(0) |
| 335 | 169 |
| 170 #define AV_RL64(x) (((uint64_t)((uint8_t*)(x))[7] << 56) | \ | |
| 171 ((uint64_t)((uint8_t*)(x))[6] << 48) | \ | |
| 172 ((uint64_t)((uint8_t*)(x))[5] << 40) | \ | |
| 173 ((uint64_t)((uint8_t*)(x))[4] << 32) | \ | |
| 174 ((uint64_t)((uint8_t*)(x))[3] << 24) | \ | |
| 175 ((uint64_t)((uint8_t*)(x))[2] << 16) | \ | |
| 176 ((uint64_t)((uint8_t*)(x))[1] << 8) | \ | |
| 177 (uint64_t)((uint8_t*)(x))[0]) | |
| 336 | 178 #define AV_WL64(p, d) do { \ |
| 335 | 179 ((uint8_t*)(p))[0] = (d); \ |
| 180 ((uint8_t*)(p))[1] = (d)>>8; \ | |
| 181 ((uint8_t*)(p))[2] = (d)>>16; \ | |
| 182 ((uint8_t*)(p))[3] = (d)>>24; \ | |
| 183 ((uint8_t*)(p))[4] = (d)>>32; \ | |
| 184 ((uint8_t*)(p))[5] = (d)>>40; \ | |
| 185 ((uint8_t*)(p))[6] = (d)>>48; \ | |
| 336 | 186 ((uint8_t*)(p))[7] = (d)>>56; } while(0) |
| 335 | 187 #endif |
| 188 | |
| 392 | 189 #endif /* FFMPEG_INTREADWRITE_H */ |
