annotate intreadwrite.h @ 328:cfaf9feae0f9 libavutil

"fast unaligned" bytestream functions patch by Ramiro Polla ramiro lisha ufsc br original thread: date: 03/11/2007 03:06 AM subject: [Ffmpeg-devel] [PATCH] Machine endian bytestream functions
author benoit
date Wed, 25 Apr 2007 08:47:15 +0000
parents 46b4da5bf9ed
children 62dad9741857
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
152
5b211d03227b Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff changeset
19 #ifndef INTREADWRITE_H
5b211d03227b Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff changeset
20 #define INTREADWRITE_H
5b211d03227b Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff changeset
21
5b211d03227b Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff changeset
22 #ifdef __GNUC__
5b211d03227b Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff changeset
23
5b211d03227b Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff changeset
24 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
25 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
26 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
27
5b211d03227b Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff changeset
28 #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
29 #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
30 #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
31
5b211d03227b Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff changeset
32 #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
33 #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
34
5b211d03227b Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff changeset
35 #else /* __GNUC__ */
5b211d03227b Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff changeset
36
5b211d03227b Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff changeset
37 #define LD16(a) (*((uint16_t*)(a)))
5b211d03227b Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff changeset
38 #define LD32(a) (*((uint32_t*)(a)))
5b211d03227b Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff changeset
39 #define LD64(a) (*((uint64_t*)(a)))
5b211d03227b Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff changeset
40
5b211d03227b Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff changeset
41 #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
42 #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
43
5b211d03227b Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff changeset
44 #endif /* !__GNUC__ */
5b211d03227b Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff changeset
45
5b211d03227b Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff changeset
46 /* endian macros */
326
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
47 #define AV_RB8(x) (((uint8_t*)(x))[0])
235
ee010796c631 simplify and remove useless index in AV_W*
michael
parents: 232
diff changeset
48 #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
49
326
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
50 #define AV_RL8(x) AV_RB8(x)
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
51 #define AV_WL8(p, d) AV_WB8(p, d)
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
52
328
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
53 #ifdef HAVE_FAST_UNALIGNED
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
54 # ifdef WORDS_BIGENDIAN
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
55 # define AV_RB16(x) LD16(x)
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
56 # define AV_WB16(p, d) ST16(p, d)
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
57
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
58 # define AV_RL16(x) bswap_16(LD16(x))
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
59 # define AV_WL16(p, d) ST16(p, bswap_16(d))
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
60 # else /* WORDS_BIGENDIAN */
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
61 # define AV_RB16(x) bswap_16(LD16(x))
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
62 # define AV_WB16(p, d) ST16(p, bswap_16(d))
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
63
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
64 # define AV_RL16(x) LD16(x)
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
65 # define AV_WL16(p, d) ST16(p, d)
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
66 # endif
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
67 #else /* HAVE_FAST_UNALIGNED */
326
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
68 #define AV_RB16(x) ((((uint8_t*)(x))[0] << 8) | ((uint8_t*)(x))[1])
235
ee010796c631 simplify and remove useless index in AV_W*
michael
parents: 232
diff changeset
69 #define AV_WB16(p, d) { \
ee010796c631 simplify and remove useless index in AV_W*
michael
parents: 232
diff changeset
70 ((uint8_t*)(p))[1] = (d); \
ee010796c631 simplify and remove useless index in AV_W*
michael
parents: 232
diff changeset
71 ((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
72
326
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
73 #define AV_RL16(x) ((((uint8_t*)(x))[1] << 8) | \
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
74 ((uint8_t*)(x))[0])
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
75 #define AV_WL16(p, d) { \
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
76 ((uint8_t*)(p))[0] = (d); \
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
77 ((uint8_t*)(p))[1] = (d)>>8; }
328
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
78 #endif
326
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
79
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
80 #define AV_RB24(x) ((((uint8_t*)(x))[0] << 16) | \
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
81 (((uint8_t*)(x))[1] << 8) | \
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
82 ((uint8_t*)(x))[2])
269
4c59c3468db0 add R/WB24 functions
bcoudurier
parents: 263
diff changeset
83 #define AV_WB24(p, d) { \
4c59c3468db0 add R/WB24 functions
bcoudurier
parents: 263
diff changeset
84 ((uint8_t*)(p))[2] = (d); \
4c59c3468db0 add R/WB24 functions
bcoudurier
parents: 263
diff changeset
85 ((uint8_t*)(p))[1] = (d)>>8; \
4c59c3468db0 add R/WB24 functions
bcoudurier
parents: 263
diff changeset
86 ((uint8_t*)(p))[0] = (d)>>16; }
4c59c3468db0 add R/WB24 functions
bcoudurier
parents: 263
diff changeset
87
326
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
88 #define AV_RL24(x) ((((uint8_t*)(x))[2] << 16) | \
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
89 (((uint8_t*)(x))[1] << 8) | \
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
90 ((uint8_t*)(x))[0])
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
91 #define AV_WL24(p, d) { \
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
92 ((uint8_t*)(p))[0] = (d); \
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
93 ((uint8_t*)(p))[1] = (d)>>8; \
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
94 ((uint8_t*)(p))[2] = (d)>>16; }
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
95
328
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
96 #ifdef HAVE_FAST_UNALIGNED
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
97 # ifdef WORDS_BIGENDIAN
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
98 # define AV_RB32(x) LD32(x)
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
99 # define AV_WB32(p, d) ST32(p, d)
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
100
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
101 # define AV_RL32(x) bswap_32(LD32(x))
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
102 # define AV_WL32(p, d) ST32(p, bswap_32(d))
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
103 # else /* WORDS_BIGENDIAN */
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
104 # define AV_RB32(x) bswap_32(LD32(x))
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
105 # define AV_WB32(p, d) ST32(p, bswap_32(d))
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
106
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
107 # define AV_RL32(x) LD32(x)
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
108 # define AV_WL32(p, d) ST32(p, d)
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
109 # endif
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
110 #else /* HAVE_FAST_UNALIGNED */
326
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
111 #define AV_RB32(x) ((((uint8_t*)(x))[0] << 24) | \
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
112 (((uint8_t*)(x))[1] << 16) | \
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
113 (((uint8_t*)(x))[2] << 8) | \
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
114 ((uint8_t*)(x))[3])
235
ee010796c631 simplify and remove useless index in AV_W*
michael
parents: 232
diff changeset
115 #define AV_WB32(p, d) { \
ee010796c631 simplify and remove useless index in AV_W*
michael
parents: 232
diff changeset
116 ((uint8_t*)(p))[3] = (d); \
ee010796c631 simplify and remove useless index in AV_W*
michael
parents: 232
diff changeset
117 ((uint8_t*)(p))[2] = (d)>>8; \
ee010796c631 simplify and remove useless index in AV_W*
michael
parents: 232
diff changeset
118 ((uint8_t*)(p))[1] = (d)>>16; \
ee010796c631 simplify and remove useless index in AV_W*
michael
parents: 232
diff changeset
119 ((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
120
326
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
121 #define AV_RL32(x) ((((uint8_t*)(x))[3] << 24) | \
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
122 (((uint8_t*)(x))[2] << 16) | \
46b4da5bf9ed cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting.
diego
parents: 282
diff changeset
123 (((uint8_t*)(x))[1] << 8) | \
282
85ee113e8336 add little endian 24bit read/write
alex
parents: 269
diff changeset
124 ((uint8_t*)(x))[0])
235
ee010796c631 simplify and remove useless index in AV_W*
michael
parents: 232
diff changeset
125 #define AV_WL32(p, d) { \
ee010796c631 simplify and remove useless index in AV_W*
michael
parents: 232
diff changeset
126 ((uint8_t*)(p))[0] = (d); \
ee010796c631 simplify and remove useless index in AV_W*
michael
parents: 232
diff changeset
127 ((uint8_t*)(p))[1] = (d)>>8; \
ee010796c631 simplify and remove useless index in AV_W*
michael
parents: 232
diff changeset
128 ((uint8_t*)(p))[2] = (d)>>16; \
ee010796c631 simplify and remove useless index in AV_W*
michael
parents: 232
diff changeset
129 ((uint8_t*)(p))[3] = (d)>>24; }
328
cfaf9feae0f9 "fast unaligned" bytestream functions
benoit
parents: 326
diff changeset
130 #endif
152
5b211d03227b Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff changeset
131
5b211d03227b Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
diff changeset
132 #endif /* INTREADWRITE_H */