Mercurial > libavutil.hg
annotate intreadwrite.h @ 242:2d2e2b4e50fa libavutil
Remove unused ENODATA define
| author | mmu_man |
|---|---|
| date | Sun, 11 Feb 2007 22:07:06 +0000 |
| parents | ee010796c631 |
| children | 4a904af6d8f4 |
| rev | line source |
|---|---|
|
152
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
1 #ifndef INTREADWRITE_H |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
2 #define INTREADWRITE_H |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
3 |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
4 #ifdef __GNUC__ |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
5 |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
6 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
|
7 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
|
8 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
|
9 |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
10 #define LD16(a) (((const struct unaligned_16 *) (a))->l) |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
11 #define LD32(a) (((const struct unaligned_32 *) (a))->l) |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
12 #define LD64(a) (((const struct unaligned_64 *) (a))->l) |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
13 |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
14 #define ST16(a, b) (((struct unaligned_16 *) (a))->l) = (b) |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
15 #define ST32(a, b) (((struct unaligned_32 *) (a))->l) = (b) |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
16 |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
17 #else /* __GNUC__ */ |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
18 |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
19 #define LD16(a) (*((uint16_t*)(a))) |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
20 #define LD32(a) (*((uint32_t*)(a))) |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
21 #define LD64(a) (*((uint64_t*)(a))) |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
22 |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
23 #define ST16(a, b) *((uint16_t*)(a)) = (b) |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
24 #define ST32(a, b) *((uint32_t*)(a)) = (b) |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
25 |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
26 #endif /* !__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 /* endian macros */ |
|
232
9845a508ffbd
add AV_WB/WL for lswriting, similar to AV_RB/RL (also increment version)
alex
parents:
231
diff
changeset
|
29 #define AV_RB8(x) (((uint8_t*)(x))[0]) |
| 235 | 30 #define AV_WB8(p, d) { ((uint8_t*)(p))[0] = (d); } |
|
232
9845a508ffbd
add AV_WB/WL for lswriting, similar to AV_RB/RL (also increment version)
alex
parents:
231
diff
changeset
|
31 |
|
9845a508ffbd
add AV_WB/WL for lswriting, similar to AV_RB/RL (also increment version)
alex
parents:
231
diff
changeset
|
32 #define AV_RB16(x) ((((uint8_t*)(x))[0] << 8) | ((uint8_t*)(x))[1]) |
| 235 | 33 #define AV_WB16(p, d) { \ |
| 34 ((uint8_t*)(p))[1] = (d); \ | |
| 35 ((uint8_t*)(p))[0] = (d)>>8; } | |
|
232
9845a508ffbd
add AV_WB/WL for lswriting, similar to AV_RB/RL (also increment version)
alex
parents:
231
diff
changeset
|
36 |
|
9845a508ffbd
add AV_WB/WL for lswriting, similar to AV_RB/RL (also increment version)
alex
parents:
231
diff
changeset
|
37 #define AV_RB32(x) ((((uint8_t*)(x))[0] << 24) | \ |
|
152
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
38 (((uint8_t*)(x))[1] << 16) | \ |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
39 (((uint8_t*)(x))[2] << 8) | \ |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
40 ((uint8_t*)(x))[3]) |
| 235 | 41 #define AV_WB32(p, d) { \ |
| 42 ((uint8_t*)(p))[3] = (d); \ | |
| 43 ((uint8_t*)(p))[2] = (d)>>8; \ | |
| 44 ((uint8_t*)(p))[1] = (d)>>16; \ | |
| 45 ((uint8_t*)(p))[0] = (d)>>24; } | |
|
232
9845a508ffbd
add AV_WB/WL for lswriting, similar to AV_RB/RL (also increment version)
alex
parents:
231
diff
changeset
|
46 |
|
9845a508ffbd
add AV_WB/WL for lswriting, similar to AV_RB/RL (also increment version)
alex
parents:
231
diff
changeset
|
47 #define AV_RL8(x) AV_RB8(x) |
| 235 | 48 #define AV_WL8(p, d) AV_WB8(p, d) |
|
232
9845a508ffbd
add AV_WB/WL for lswriting, similar to AV_RB/RL (also increment version)
alex
parents:
231
diff
changeset
|
49 |
|
9845a508ffbd
add AV_WB/WL for lswriting, similar to AV_RB/RL (also increment version)
alex
parents:
231
diff
changeset
|
50 #define AV_RL16(x) ((((uint8_t*)(x))[1] << 8) | ((uint8_t*)(x))[0]) |
| 235 | 51 #define AV_WL16(p, d) { \ |
| 52 ((uint8_t*)(p))[0] = (d); \ | |
| 53 ((uint8_t*)(p))[1] = (d)>>8; } | |
|
232
9845a508ffbd
add AV_WB/WL for lswriting, similar to AV_RB/RL (also increment version)
alex
parents:
231
diff
changeset
|
54 |
|
9845a508ffbd
add AV_WB/WL for lswriting, similar to AV_RB/RL (also increment version)
alex
parents:
231
diff
changeset
|
55 #define AV_RL32(x) ((((uint8_t*)(x))[3] << 24) | \ |
|
152
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
56 (((uint8_t*)(x))[2] << 16) | \ |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
57 (((uint8_t*)(x))[1] << 8) | \ |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
58 ((uint8_t*)(x))[0]) |
| 235 | 59 #define AV_WL32(p, d) { \ |
| 60 ((uint8_t*)(p))[0] = (d); \ | |
| 61 ((uint8_t*)(p))[1] = (d)>>8; \ | |
| 62 ((uint8_t*)(p))[2] = (d)>>16; \ | |
| 63 ((uint8_t*)(p))[3] = (d)>>24; } | |
|
152
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
64 |
|
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff
changeset
|
65 #endif /* INTREADWRITE_H */ |
