Mercurial > libavcodec.hg
annotate common.c @ 439:6ae275655a23 libavcodec
* more PIC friendly and faster code
author | kabi |
---|---|
date | Mon, 27 May 2002 14:09:10 +0000 |
parents | 718a22dc121f |
children | 297eed976b20 |
rev | line source |
---|---|
0 | 1 /* |
2 * Common bit i/o utils | |
429 | 3 * Copyright (c) 2000, 2001 Fabrice Bellard. |
0 | 4 * |
429 | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Lesser General Public | |
7 * License as published by the Free Software Foundation; either | |
8 * version 2 of the License, or (at your option) any later version. | |
0 | 9 * |
429 | 10 * This library is distributed in the hope that it will be useful, |
0 | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
429 | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
13 * Lesser General Public License for more details. | |
0 | 14 * |
429 | 15 * You should have received a copy of the GNU Lesser General Public |
16 * License along with this library; if not, write to the Free Software | |
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
144
diff
changeset
|
18 * |
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
219
diff
changeset
|
19 * alternative bitstream reader & writer by Michael Niedermayer <michaelni@gmx.at> |
0 | 20 */ |
64 | 21 #include "common.h" |
8 | 22 |
0 | 23 void init_put_bits(PutBitContext *s, |
24 UINT8 *buffer, int buffer_size, | |
25 void *opaque, | |
26 void (*write_data)(void *, UINT8 *, int)) | |
27 { | |
28 s->buf = buffer; | |
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
219
diff
changeset
|
29 s->buf_end = s->buf + buffer_size; |
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
219
diff
changeset
|
30 s->data_out_size = 0; |
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
219
diff
changeset
|
31 if(write_data!=NULL) |
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
219
diff
changeset
|
32 { |
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
219
diff
changeset
|
33 fprintf(stderr, "write Data callback is not supported\n"); |
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
219
diff
changeset
|
34 } |
238
99a9f903f0e3
optimized the normal bitstream writer, its faster than the alternative one on p3 now ... lets hope its at least not slower on p4 & k7
michaelni
parents:
234
diff
changeset
|
35 #ifdef ALT_BITSTREAM_WRITER |
99a9f903f0e3
optimized the normal bitstream writer, its faster than the alternative one on p3 now ... lets hope its at least not slower on p4 & k7
michaelni
parents:
234
diff
changeset
|
36 s->index=0; |
99a9f903f0e3
optimized the normal bitstream writer, its faster than the alternative one on p3 now ... lets hope its at least not slower on p4 & k7
michaelni
parents:
234
diff
changeset
|
37 ((uint32_t*)(s->buf))[0]=0; |
99a9f903f0e3
optimized the normal bitstream writer, its faster than the alternative one on p3 now ... lets hope its at least not slower on p4 & k7
michaelni
parents:
234
diff
changeset
|
38 // memset(buffer, 0, buffer_size); |
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
219
diff
changeset
|
39 #else |
0 | 40 s->buf_ptr = s->buf; |
238
99a9f903f0e3
optimized the normal bitstream writer, its faster than the alternative one on p3 now ... lets hope its at least not slower on p4 & k7
michaelni
parents:
234
diff
changeset
|
41 s->bit_left=32; |
0 | 42 s->bit_buf=0; |
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
219
diff
changeset
|
43 #endif |
0 | 44 } |
45 | |
46 /* return the number of bits output */ | |
64 | 47 INT64 get_bit_count(PutBitContext *s) |
0 | 48 { |
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
219
diff
changeset
|
49 #ifdef ALT_BITSTREAM_WRITER |
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
219
diff
changeset
|
50 return s->data_out_size * 8 + s->index; |
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
219
diff
changeset
|
51 #else |
238
99a9f903f0e3
optimized the normal bitstream writer, its faster than the alternative one on p3 now ... lets hope its at least not slower on p4 & k7
michaelni
parents:
234
diff
changeset
|
52 return (s->buf_ptr - s->buf + s->data_out_size) * 8 + 32 - (INT64)s->bit_left; |
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
219
diff
changeset
|
53 #endif |
0 | 54 } |
55 | |
56 void align_put_bits(PutBitContext *s) | |
57 { | |
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
219
diff
changeset
|
58 #ifdef ALT_BITSTREAM_WRITER |
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
219
diff
changeset
|
59 put_bits(s,( - s->index) & 7,0); |
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
219
diff
changeset
|
60 #else |
238
99a9f903f0e3
optimized the normal bitstream writer, its faster than the alternative one on p3 now ... lets hope its at least not slower on p4 & k7
michaelni
parents:
234
diff
changeset
|
61 put_bits(s,s->bit_left & 7,0); |
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
219
diff
changeset
|
62 #endif |
0 | 63 } |
64 | |
65 /* pad the end of the output stream with zeros */ | |
66 void flush_put_bits(PutBitContext *s) | |
67 { | |
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
219
diff
changeset
|
68 #ifdef ALT_BITSTREAM_WRITER |
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
219
diff
changeset
|
69 align_put_bits(s); |
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
219
diff
changeset
|
70 #else |
238
99a9f903f0e3
optimized the normal bitstream writer, its faster than the alternative one on p3 now ... lets hope its at least not slower on p4 & k7
michaelni
parents:
234
diff
changeset
|
71 s->bit_buf<<= s->bit_left; |
99a9f903f0e3
optimized the normal bitstream writer, its faster than the alternative one on p3 now ... lets hope its at least not slower on p4 & k7
michaelni
parents:
234
diff
changeset
|
72 while (s->bit_left < 32) { |
0 | 73 /* XXX: should test end of buffer */ |
74 *s->buf_ptr++=s->bit_buf >> 24; | |
75 s->bit_buf<<=8; | |
238
99a9f903f0e3
optimized the normal bitstream writer, its faster than the alternative one on p3 now ... lets hope its at least not slower on p4 & k7
michaelni
parents:
234
diff
changeset
|
76 s->bit_left+=8; |
0 | 77 } |
238
99a9f903f0e3
optimized the normal bitstream writer, its faster than the alternative one on p3 now ... lets hope its at least not slower on p4 & k7
michaelni
parents:
234
diff
changeset
|
78 s->bit_left=32; |
0 | 79 s->bit_buf=0; |
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
219
diff
changeset
|
80 #endif |
0 | 81 } |
82 | |
83 /* pad the end of the output stream with zeros */ | |
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
219
diff
changeset
|
84 #ifndef ALT_BITSTREAM_WRITER |
0 | 85 void jflush_put_bits(PutBitContext *s) |
86 { | |
87 unsigned int b; | |
238
99a9f903f0e3
optimized the normal bitstream writer, its faster than the alternative one on p3 now ... lets hope its at least not slower on p4 & k7
michaelni
parents:
234
diff
changeset
|
88 s->bit_buf<<= s->bit_left; |
99a9f903f0e3
optimized the normal bitstream writer, its faster than the alternative one on p3 now ... lets hope its at least not slower on p4 & k7
michaelni
parents:
234
diff
changeset
|
89 s->bit_buf |= ~1U >> (32 - s->bit_left); /* set all the unused bits to one */ |
0 | 90 |
238
99a9f903f0e3
optimized the normal bitstream writer, its faster than the alternative one on p3 now ... lets hope its at least not slower on p4 & k7
michaelni
parents:
234
diff
changeset
|
91 while (s->bit_left < 32) { |
0 | 92 b = s->bit_buf >> 24; |
93 *s->buf_ptr++ = b; | |
94 if (b == 0xff) | |
95 *s->buf_ptr++ = 0; | |
96 s->bit_buf<<=8; | |
238
99a9f903f0e3
optimized the normal bitstream writer, its faster than the alternative one on p3 now ... lets hope its at least not slower on p4 & k7
michaelni
parents:
234
diff
changeset
|
97 s->bit_left+=8; |
0 | 98 } |
238
99a9f903f0e3
optimized the normal bitstream writer, its faster than the alternative one on p3 now ... lets hope its at least not slower on p4 & k7
michaelni
parents:
234
diff
changeset
|
99 s->bit_left=32; |
0 | 100 s->bit_buf=0; |
101 } | |
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
219
diff
changeset
|
102 #else |
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
219
diff
changeset
|
103 void jflush_put_bits(PutBitContext *s) |
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
219
diff
changeset
|
104 { |
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
219
diff
changeset
|
105 int num= ( - s->index) & 7; |
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
219
diff
changeset
|
106 jput_bits(s, num,0xFF>>(8-num)); |
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
219
diff
changeset
|
107 } |
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
219
diff
changeset
|
108 #endif |
0 | 109 |
358 | 110 void put_string(PutBitContext * pbc, char *s) |
111 { | |
112 while(*s){ | |
113 put_bits(pbc, 8, *s); | |
114 s++; | |
115 } | |
116 put_bits(pbc, 8, 0); | |
117 } | |
118 | |
0 | 119 /* bit input functions */ |
120 | |
121 void init_get_bits(GetBitContext *s, | |
122 UINT8 *buffer, int buffer_size) | |
123 { | |
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
144
diff
changeset
|
124 #ifdef ALT_BITSTREAM_READER |
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
144
diff
changeset
|
125 s->index=0; |
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
144
diff
changeset
|
126 s->buffer= buffer; |
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
144
diff
changeset
|
127 #else |
0 | 128 s->buf = buffer; |
129 s->buf_ptr = buffer; | |
130 s->buf_end = buffer + buffer_size; | |
131 s->bit_cnt = 0; | |
132 s->bit_buf = 0; | |
133 while (s->buf_ptr < s->buf_end && | |
134 s->bit_cnt < 32) { | |
135 s->bit_buf |= (*s->buf_ptr++ << (24 - s->bit_cnt)); | |
136 s->bit_cnt += 8; | |
137 } | |
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
144
diff
changeset
|
138 #endif |
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
264
diff
changeset
|
139 s->size= buffer_size; |
0 | 140 } |
141 | |
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
144
diff
changeset
|
142 #ifndef ALT_BITSTREAM_READER |
0 | 143 /* n must be >= 1 and <= 32 */ |
20
907b67420d84
inlineing common case of get_bits() -> gives 2speedup. more optim coming soon...
arpi_esp
parents:
8
diff
changeset
|
144 /* also true: n > s->bit_cnt */ |
907b67420d84
inlineing common case of get_bits() -> gives 2speedup. more optim coming soon...
arpi_esp
parents:
8
diff
changeset
|
145 unsigned int get_bits_long(GetBitContext *s, int n) |
0 | 146 { |
147 unsigned int val; | |
148 int bit_cnt; | |
149 unsigned int bit_buf; | |
150 | |
151 #ifdef STATS | |
152 st_bit_counts[st_current_index] += n; | |
153 #endif | |
154 | |
155 bit_buf = s->bit_buf; | |
20
907b67420d84
inlineing common case of get_bits() -> gives 2speedup. more optim coming soon...
arpi_esp
parents:
8
diff
changeset
|
156 bit_cnt = s->bit_cnt - n; |
0 | 157 |
20
907b67420d84
inlineing common case of get_bits() -> gives 2speedup. more optim coming soon...
arpi_esp
parents:
8
diff
changeset
|
158 // if (bit_cnt >= 0) { |
907b67420d84
inlineing common case of get_bits() -> gives 2speedup. more optim coming soon...
arpi_esp
parents:
8
diff
changeset
|
159 // val = bit_buf >> (32 - n); |
907b67420d84
inlineing common case of get_bits() -> gives 2speedup. more optim coming soon...
arpi_esp
parents:
8
diff
changeset
|
160 // bit_buf <<= n; |
907b67420d84
inlineing common case of get_bits() -> gives 2speedup. more optim coming soon...
arpi_esp
parents:
8
diff
changeset
|
161 // } else |
907b67420d84
inlineing common case of get_bits() -> gives 2speedup. more optim coming soon...
arpi_esp
parents:
8
diff
changeset
|
162 { |
907b67420d84
inlineing common case of get_bits() -> gives 2speedup. more optim coming soon...
arpi_esp
parents:
8
diff
changeset
|
163 UINT8 *buf_ptr; |
0 | 164 val = bit_buf >> (32 - n); |
165 buf_ptr = s->buf_ptr; | |
166 buf_ptr += 4; | |
167 /* handle common case: we can read everything */ | |
168 if (buf_ptr <= s->buf_end) { | |
8 | 169 #if ARCH_X86 |
170 bit_buf = bswap_32(*((unsigned long*)(&buf_ptr[-4]))); | |
171 #else | |
172 bit_buf = (buf_ptr[-4] << 24) | | |
173 (buf_ptr[-3] << 16) | | |
0 | 174 (buf_ptr[-2] << 8) | |
8 | 175 (buf_ptr[-1]); |
176 #endif | |
0 | 177 } else { |
178 buf_ptr -= 4; | |
179 bit_buf = 0; | |
180 if (buf_ptr < s->buf_end) | |
181 bit_buf |= *buf_ptr++ << 24; | |
182 if (buf_ptr < s->buf_end) | |
183 bit_buf |= *buf_ptr++ << 16; | |
184 if (buf_ptr < s->buf_end) | |
185 bit_buf |= *buf_ptr++ << 8; | |
186 if (buf_ptr < s->buf_end) | |
187 bit_buf |= *buf_ptr++; | |
188 } | |
189 s->buf_ptr = buf_ptr; | |
190 val |= bit_buf >> (32 + bit_cnt); | |
191 bit_buf <<= - bit_cnt; | |
192 bit_cnt += 32; | |
193 } | |
194 s->bit_buf = bit_buf; | |
195 s->bit_cnt = bit_cnt; | |
196 return val; | |
197 } | |
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
144
diff
changeset
|
198 #endif |
0 | 199 |
200 void align_get_bits(GetBitContext *s) | |
201 { | |
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
144
diff
changeset
|
202 #ifdef ALT_BITSTREAM_READER |
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
144
diff
changeset
|
203 s->index= (s->index + 7) & (~7); |
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
144
diff
changeset
|
204 #else |
0 | 205 int n; |
206 n = s->bit_cnt & 7; | |
207 if (n > 0) { | |
208 get_bits(s, n); | |
209 } | |
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
144
diff
changeset
|
210 #endif |
0 | 211 } |
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
144
diff
changeset
|
212 |
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
238
diff
changeset
|
213 int check_marker(GetBitContext *s, char *msg) |
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
238
diff
changeset
|
214 { |
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
238
diff
changeset
|
215 int bit= get_bits1(s); |
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
238
diff
changeset
|
216 if(!bit) printf("Marker bit missing %s\n", msg); |
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
238
diff
changeset
|
217 |
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
238
diff
changeset
|
218 return bit; |
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
238
diff
changeset
|
219 } |
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
238
diff
changeset
|
220 |
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
144
diff
changeset
|
221 #ifndef ALT_BITSTREAM_READER |
144 | 222 /* This function is identical to get_bits_long(), the */ |
223 /* only diference is that it doesn't touch the buffer */ | |
224 /* it is usefull to see the buffer. */ | |
225 | |
226 unsigned int show_bits_long(GetBitContext *s, int n) | |
227 { | |
228 unsigned int val; | |
229 int bit_cnt; | |
230 unsigned int bit_buf; | |
231 UINT8 *buf_ptr; | |
232 | |
233 bit_buf = s->bit_buf; | |
234 bit_cnt = s->bit_cnt - n; | |
235 | |
236 val = bit_buf >> (32 - n); | |
237 buf_ptr = s->buf_ptr; | |
238 buf_ptr += 4; | |
239 | |
240 /* handle common case: we can read everything */ | |
241 if (buf_ptr <= s->buf_end) { | |
242 #ifdef ARCH_X86 | |
243 bit_buf = bswap_32(*((unsigned long*)(&buf_ptr[-4]))); | |
244 #else | |
245 bit_buf = (buf_ptr[-4] << 24) | | |
246 (buf_ptr[-3] << 16) | | |
247 (buf_ptr[-2] << 8) | | |
248 (buf_ptr[-1]); | |
249 #endif | |
250 } else { | |
251 buf_ptr -= 4; | |
252 bit_buf = 0; | |
253 if (buf_ptr < s->buf_end) | |
254 bit_buf |= *buf_ptr++ << 24; | |
255 if (buf_ptr < s->buf_end) | |
256 bit_buf |= *buf_ptr++ << 16; | |
257 if (buf_ptr < s->buf_end) | |
258 bit_buf |= *buf_ptr++ << 8; | |
259 if (buf_ptr < s->buf_end) | |
260 bit_buf |= *buf_ptr++; | |
261 } | |
262 val |= bit_buf >> (32 + bit_cnt); | |
263 bit_buf <<= - bit_cnt; | |
264 bit_cnt += 32; | |
265 | |
266 return val; | |
267 } | |
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
144
diff
changeset
|
268 #endif |
0 | 269 |
270 /* VLC decoding */ | |
271 | |
272 //#define DEBUG_VLC | |
273 | |
274 #define GET_DATA(v, table, i, wrap, size) \ | |
275 {\ | |
276 UINT8 *ptr = (UINT8 *)table + i * wrap;\ | |
277 switch(size) {\ | |
278 case 1:\ | |
279 v = *(UINT8 *)ptr;\ | |
280 break;\ | |
281 case 2:\ | |
282 v = *(UINT16 *)ptr;\ | |
283 break;\ | |
284 default:\ | |
285 v = *(UINT32 *)ptr;\ | |
286 break;\ | |
287 }\ | |
288 } | |
289 | |
290 | |
291 static int alloc_table(VLC *vlc, int size) | |
292 { | |
293 int index; | |
294 index = vlc->table_size; | |
295 vlc->table_size += size; | |
296 if (vlc->table_size > vlc->table_allocated) { | |
297 vlc->table_allocated += (1 << vlc->bits); | |
298 vlc->table_bits = realloc(vlc->table_bits, | |
299 sizeof(INT8) * vlc->table_allocated); | |
300 vlc->table_codes = realloc(vlc->table_codes, | |
301 sizeof(INT16) * vlc->table_allocated); | |
302 if (!vlc->table_bits || | |
303 !vlc->table_codes) | |
304 return -1; | |
305 } | |
306 return index; | |
307 } | |
308 | |
309 static int build_table(VLC *vlc, int table_nb_bits, | |
310 int nb_codes, | |
311 const void *bits, int bits_wrap, int bits_size, | |
312 const void *codes, int codes_wrap, int codes_size, | |
313 UINT32 code_prefix, int n_prefix) | |
314 { | |
315 int i, j, k, n, table_size, table_index, nb, n1, index; | |
316 UINT32 code; | |
317 INT8 *table_bits; | |
318 INT16 *table_codes; | |
319 | |
320 table_size = 1 << table_nb_bits; | |
321 table_index = alloc_table(vlc, table_size); | |
322 #ifdef DEBUG_VLC | |
323 printf("new table index=%d size=%d code_prefix=%x n=%d\n", | |
324 table_index, table_size, code_prefix, n_prefix); | |
325 #endif | |
326 if (table_index < 0) | |
327 return -1; | |
328 table_bits = &vlc->table_bits[table_index]; | |
329 table_codes = &vlc->table_codes[table_index]; | |
330 | |
331 for(i=0;i<table_size;i++) { | |
332 table_bits[i] = 0; | |
333 table_codes[i] = -1; | |
334 } | |
335 | |
336 /* first pass: map codes and compute auxillary table sizes */ | |
337 for(i=0;i<nb_codes;i++) { | |
338 GET_DATA(n, bits, i, bits_wrap, bits_size); | |
339 GET_DATA(code, codes, i, codes_wrap, codes_size); | |
340 /* we accept tables with holes */ | |
341 if (n <= 0) | |
342 continue; | |
343 #if defined(DEBUG_VLC) && 0 | |
344 printf("i=%d n=%d code=0x%x\n", i, n, code); | |
345 #endif | |
346 /* if code matches the prefix, it is in the table */ | |
347 n -= n_prefix; | |
348 if (n > 0 && (code >> n) == code_prefix) { | |
349 if (n <= table_nb_bits) { | |
350 /* no need to add another table */ | |
351 j = (code << (table_nb_bits - n)) & (table_size - 1); | |
352 nb = 1 << (table_nb_bits - n); | |
353 for(k=0;k<nb;k++) { | |
354 #ifdef DEBUG_VLC | |
355 printf("%4x: code=%d n=%d\n", | |
356 j, i, n); | |
357 #endif | |
358 if (table_bits[j] != 0) { | |
359 fprintf(stderr, "incorrect codes\n"); | |
360 exit(1); | |
361 } | |
362 table_bits[j] = n; | |
363 table_codes[j] = i; | |
364 j++; | |
365 } | |
366 } else { | |
367 n -= table_nb_bits; | |
368 j = (code >> n) & ((1 << table_nb_bits) - 1); | |
369 #ifdef DEBUG_VLC | |
370 printf("%4x: n=%d (subtable)\n", | |
371 j, n); | |
372 #endif | |
373 /* compute table size */ | |
374 n1 = -table_bits[j]; | |
375 if (n > n1) | |
376 n1 = n; | |
377 table_bits[j] = -n1; | |
378 } | |
379 } | |
380 } | |
381 | |
382 /* second pass : fill auxillary tables recursively */ | |
383 for(i=0;i<table_size;i++) { | |
384 n = table_bits[i]; | |
385 if (n < 0) { | |
386 n = -n; | |
387 if (n > table_nb_bits) { | |
388 n = table_nb_bits; | |
389 table_bits[i] = -n; | |
390 } | |
391 index = build_table(vlc, n, nb_codes, | |
392 bits, bits_wrap, bits_size, | |
393 codes, codes_wrap, codes_size, | |
394 (code_prefix << table_nb_bits) | i, | |
395 n_prefix + table_nb_bits); | |
396 if (index < 0) | |
397 return -1; | |
398 /* note: realloc has been done, so reload tables */ | |
399 table_bits = &vlc->table_bits[table_index]; | |
400 table_codes = &vlc->table_codes[table_index]; | |
401 table_codes[i] = index; | |
402 } | |
403 } | |
404 return table_index; | |
405 } | |
406 | |
407 | |
24 | 408 /* Build VLC decoding tables suitable for use with get_vlc(). |
409 | |
410 'nb_bits' set thee decoding table size (2^nb_bits) entries. The | |
411 bigger it is, the faster is the decoding. But it should not be too | |
412 big to save memory and L1 cache. '9' is a good compromise. | |
413 | |
414 'nb_codes' : number of vlcs codes | |
415 | |
416 'bits' : table which gives the size (in bits) of each vlc code. | |
417 | |
418 'codes' : table which gives the bit pattern of of each vlc code. | |
419 | |
420 'xxx_wrap' : give the number of bytes between each entry of the | |
421 'bits' or 'codes' tables. | |
422 | |
423 'xxx_size' : gives the number of bytes of each entry of the 'bits' | |
424 or 'codes' tables. | |
425 | |
426 'wrap' and 'size' allows to use any memory configuration and types | |
427 (byte/word/long) to store the 'bits' and 'codes' tables. | |
428 */ | |
0 | 429 int init_vlc(VLC *vlc, int nb_bits, int nb_codes, |
430 const void *bits, int bits_wrap, int bits_size, | |
431 const void *codes, int codes_wrap, int codes_size) | |
432 { | |
433 vlc->bits = nb_bits; | |
434 vlc->table_bits = NULL; | |
435 vlc->table_codes = NULL; | |
436 vlc->table_allocated = 0; | |
437 vlc->table_size = 0; | |
438 #ifdef DEBUG_VLC | |
439 printf("build table nb_codes=%d\n", nb_codes); | |
440 #endif | |
441 | |
442 if (build_table(vlc, nb_bits, nb_codes, | |
443 bits, bits_wrap, bits_size, | |
444 codes, codes_wrap, codes_size, | |
445 0, 0) < 0) { | |
396
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
358
diff
changeset
|
446 av_free(vlc->table_bits); |
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
358
diff
changeset
|
447 av_free(vlc->table_codes); |
0 | 448 return -1; |
449 } | |
450 return 0; | |
451 } | |
452 | |
453 | |
454 void free_vlc(VLC *vlc) | |
455 { | |
396
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
358
diff
changeset
|
456 av_free(vlc->table_bits); |
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
358
diff
changeset
|
457 av_free(vlc->table_codes); |
0 | 458 } |
459 | |
324 | 460 int ff_gcd(int a, int b){ |
461 if(b) return ff_gcd(b, a%b); | |
462 else return a; | |
463 } |