Mercurial > libavcodec.hg
annotate common.h @ 213:e80ad397d30e libavcodec
Cygwin's mangling by Felix Buenemann <atmosfear@users.sourceforge.net>
| author | nickols_k |
|---|---|
| date | Sun, 20 Jan 2002 14:30:34 +0000 |
| parents | 0f1dba8fc617 |
| children | 5fc0c3af3fe4 |
| rev | line source |
|---|---|
| 0 | 1 #ifndef COMMON_H |
| 2 #define COMMON_H | |
| 3 | |
| 86 | 4 #define FFMPEG_VERSION_INT 0x000406 |
| 5 #define FFMPEG_VERSION "0.4.6" | |
| 64 | 6 |
|
213
e80ad397d30e
Cygwin's mangling by Felix Buenemann <atmosfear@users.sourceforge.net>
nickols_k
parents:
199
diff
changeset
|
7 #if defined(WIN32) && !defined(__MINGW32__) && !defined(__CYGWIN__) |
| 64 | 8 #define CONFIG_WIN32 |
| 9 #endif | |
| 10 | |
|
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
11 //#define ALT_BITSTREAM_READER |
|
193
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
12 //#define ALIGNED_BITSTREAM |
|
199
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
13 #define FAST_GET_FIRST_VLC |
|
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
14 |
| 10 | 15 #ifdef HAVE_AV_CONFIG_H |
| 64 | 16 /* only include the following when compiling package */ |
| 0 | 17 #include "../config.h" |
| 64 | 18 |
| 19 #include <stdlib.h> | |
| 20 #include <stdio.h> | |
| 21 #include <string.h> | |
| 22 #include <errno.h> | |
| 23 | |
| 24 #ifndef ENODATA | |
| 25 #define ENODATA 61 | |
| 10 | 26 #endif |
| 0 | 27 |
| 64 | 28 #endif |
| 29 | |
| 30 #ifdef CONFIG_WIN32 | |
| 31 | |
| 32 /* windows */ | |
| 33 | |
| 34 typedef unsigned short UINT16; | |
| 35 typedef signed short INT16; | |
| 36 typedef unsigned char UINT8; | |
| 37 typedef unsigned int UINT32; | |
| 38 typedef unsigned __int64 UINT64; | |
| 39 typedef signed char INT8; | |
| 40 typedef signed int INT32; | |
| 41 typedef signed __int64 INT64; | |
| 42 | |
| 43 typedef UINT8 uint8_t; | |
| 44 typedef INT8 int8_t; | |
| 45 typedef UINT16 uint16_t; | |
| 46 typedef INT16 int16_t; | |
| 47 typedef UINT32 uint32_t; | |
| 48 typedef INT32 int32_t; | |
| 49 | |
| 76 | 50 #ifndef __MINGW32__ |
| 64 | 51 #define INT64_C(c) (c ## i64) |
| 52 #define UINT64_C(c) (c ## i64) | |
| 53 | |
| 54 #define inline __inline | |
| 55 | |
| 56 /* | |
| 57 Disable warning messages: | |
| 58 warning C4244: '=' : conversion from 'double' to 'float', possible loss of data | |
| 59 warning C4305: 'argument' : truncation from 'const double' to 'float' | |
| 60 */ | |
| 61 #pragma warning( disable : 4244 ) | |
| 62 #pragma warning( disable : 4305 ) | |
| 63 | |
| 76 | 64 #else |
| 65 #define INT64_C(c) (c ## LL) | |
| 66 #define UINT64_C(c) (c ## ULL) | |
| 67 #endif /* __MINGW32__ */ | |
| 68 | |
| 64 | 69 #define M_PI 3.14159265358979323846 |
| 70 #define M_SQRT2 1.41421356237309504880 /* sqrt(2) */ | |
| 71 | |
| 72 #ifdef _DEBUG | |
| 73 #define DEBUG | |
| 74 #endif | |
| 75 | |
| 76 // code from bits/byteswap.h (C) 1997, 1998 Free Software Foundation, Inc. | |
| 77 #define bswap_32(x) \ | |
| 78 ((((x) & 0xff000000) >> 24) | (((x) & 0x00ff0000) >> 8) | \ | |
| 79 (((x) & 0x0000ff00) << 8) | (((x) & 0x000000ff) << 24)) | |
| 80 #define be2me_32(x) bswap_32(x) | |
| 81 | |
| 82 #define snprintf _snprintf | |
| 83 | |
| 76 | 84 #ifndef __MINGW32__ |
| 85 /* no config.h with VC */ | |
| 64 | 86 #define CONFIG_ENCODERS 1 |
| 87 #define CONFIG_DECODERS 1 | |
| 88 #define CONFIG_AC3 1 | |
| 76 | 89 #endif |
| 64 | 90 |
| 91 #else | |
| 92 | |
| 93 /* unix */ | |
| 94 | |
| 95 #include <inttypes.h> | |
| 96 | |
| 2 | 97 #ifndef __WINE_WINDEF16_H |
| 98 /* workaround for typedef conflict in MPlayer (wine typedefs) */ | |
| 0 | 99 typedef unsigned short UINT16; |
| 100 typedef signed short INT16; | |
| 101 #endif | |
| 102 | |
| 103 typedef unsigned char UINT8; | |
| 104 typedef unsigned int UINT32; | |
| 105 typedef unsigned long long UINT64; | |
| 106 typedef signed char INT8; | |
| 107 typedef signed int INT32; | |
| 108 typedef signed long long INT64; | |
| 109 | |
| 64 | 110 #ifdef HAVE_AV_CONFIG_H |
| 111 | |
| 112 #ifdef __FreeBSD__ | |
| 113 #include <sys/param.h> | |
| 114 #endif | |
| 115 | |
| 116 #ifndef INT64_C | |
| 117 #define INT64_C(c) (c ## LL) | |
| 118 #define UINT64_C(c) (c ## ULL) | |
| 119 #endif | |
| 120 | |
| 121 #include "../bswap.h" | |
| 122 | |
| 123 #ifdef USE_FASTMEMCPY | |
| 124 #include "fastmemcpy.h" | |
| 125 #endif | |
| 126 | |
| 76 | 127 #endif /* HAVE_AV_CONFIG_H */ |
| 128 | |
| 129 #endif /* !CONFIG_WIN32 */ | |
| 130 | |
|
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
131 |
| 76 | 132 /* debug stuff */ |
| 133 #ifdef HAVE_AV_CONFIG_H | |
| 134 | |
| 64 | 135 #ifndef DEBUG |
| 136 #define NDEBUG | |
| 137 #endif | |
| 138 #include <assert.h> | |
| 139 | |
| 76 | 140 /* dprintf macros */ |
| 141 #if defined(CONFIG_WIN32) && !defined(__MINGW32__) | |
| 142 | |
| 143 inline void dprintf(const char* fmt,...) {} | |
| 144 | |
| 145 #else | |
| 146 | |
| 147 #ifdef DEBUG | |
| 148 #define dprintf(fmt,args...) printf(fmt, ## args) | |
| 149 #else | |
| 150 #define dprintf(fmt,args...) | |
| 151 #endif | |
| 64 | 152 |
| 153 #endif /* !CONFIG_WIN32 */ | |
| 154 | |
| 76 | 155 #endif /* HAVE_AV_CONFIG_H */ |
| 156 | |
| 0 | 157 /* bit output */ |
| 158 | |
| 159 struct PutBitContext; | |
| 160 | |
| 161 typedef void (*WriteDataFunc)(void *, UINT8 *, int); | |
| 162 | |
| 163 typedef struct PutBitContext { | |
|
20
907b67420d84
inlineing common case of get_bits() -> gives 2speedup. more optim coming soon...
arpi_esp
parents:
10
diff
changeset
|
164 UINT32 bit_buf; |
| 0 | 165 int bit_cnt; |
|
20
907b67420d84
inlineing common case of get_bits() -> gives 2speedup. more optim coming soon...
arpi_esp
parents:
10
diff
changeset
|
166 UINT8 *buf, *buf_ptr, *buf_end; |
| 64 | 167 INT64 data_out_size; /* in bytes */ |
| 0 | 168 void *opaque; |
| 169 WriteDataFunc write_data; | |
| 170 } PutBitContext; | |
| 171 | |
| 172 void init_put_bits(PutBitContext *s, | |
| 173 UINT8 *buffer, int buffer_size, | |
| 174 void *opaque, | |
| 175 void (*write_data)(void *, UINT8 *, int)); | |
| 176 void put_bits(PutBitContext *s, int n, unsigned int value); | |
| 85 | 177 INT64 get_bit_count(PutBitContext *s); /* XXX: change function name */ |
| 0 | 178 void align_put_bits(PutBitContext *s); |
| 179 void flush_put_bits(PutBitContext *s); | |
| 180 | |
| 181 /* jpeg specific put_bits */ | |
| 182 void jput_bits(PutBitContext *s, int n, unsigned int value); | |
| 183 void jflush_put_bits(PutBitContext *s); | |
| 184 | |
| 185 /* bit input */ | |
| 186 | |
| 187 typedef struct GetBitContext { | |
|
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
188 #ifdef ALT_BITSTREAM_READER |
|
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
189 int index; |
|
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
190 UINT8 *buffer; |
|
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
191 #else |
|
20
907b67420d84
inlineing common case of get_bits() -> gives 2speedup. more optim coming soon...
arpi_esp
parents:
10
diff
changeset
|
192 UINT32 bit_buf; |
| 0 | 193 int bit_cnt; |
|
20
907b67420d84
inlineing common case of get_bits() -> gives 2speedup. more optim coming soon...
arpi_esp
parents:
10
diff
changeset
|
194 UINT8 *buf, *buf_ptr, *buf_end; |
|
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
195 #endif |
| 0 | 196 } GetBitContext; |
| 197 | |
| 198 typedef struct VLC { | |
| 199 int bits; | |
| 200 INT16 *table_codes; | |
| 201 INT8 *table_bits; | |
| 202 int table_size, table_allocated; | |
| 203 } VLC; | |
| 204 | |
|
193
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
205 /* used to avoid missaligned exceptions on some archs (alpha, ...) */ |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
206 #ifdef ARCH_X86 |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
207 #define unaligned32(a) (*(UINT32*)(a)) |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
208 #else |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
209 #ifdef __GNUC__ |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
210 static inline uint32_t unaligned32(const void *v) { |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
211 struct Unaligned { |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
212 uint32_t i; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
213 } __attribute__((packed)); |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
214 |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
215 return ((const struct Unaligned *) v)->i; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
216 } |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
217 #elif defined(__DECC) |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
218 static inline uint32_t unaligned32(const void *v) { |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
219 return *(const __unaligned uint32_t *) v; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
220 } |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
221 #else |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
222 static inline uint32_t unaligned32(const void *v) { |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
223 return *(const uint32_t *) v; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
224 } |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
225 #endif |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
226 #endif //!ARCH_X86 |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
227 |
| 0 | 228 void init_get_bits(GetBitContext *s, |
| 229 UINT8 *buffer, int buffer_size); | |
| 230 | |
|
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
231 #ifndef ALT_BITSTREAM_READER |
|
20
907b67420d84
inlineing common case of get_bits() -> gives 2speedup. more optim coming soon...
arpi_esp
parents:
10
diff
changeset
|
232 unsigned int get_bits_long(GetBitContext *s, int n); |
| 144 | 233 unsigned int show_bits_long(GetBitContext *s, int n); |
|
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
234 #endif |
|
20
907b67420d84
inlineing common case of get_bits() -> gives 2speedup. more optim coming soon...
arpi_esp
parents:
10
diff
changeset
|
235 |
|
907b67420d84
inlineing common case of get_bits() -> gives 2speedup. more optim coming soon...
arpi_esp
parents:
10
diff
changeset
|
236 static inline unsigned int get_bits(GetBitContext *s, int n){ |
|
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
237 #ifdef ALT_BITSTREAM_READER |
|
193
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
238 #ifdef ALIGNED_BITSTREAM |
|
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
239 int index= s->index; |
|
193
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
240 uint32_t result1= be2me_32( ((uint32_t *)s->buffer)[index>>5] ); |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
241 uint32_t result2= be2me_32( ((uint32_t *)s->buffer)[(index>>5) + 1] ); |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
242 #ifdef ARCH_X86 |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
243 asm ("shldl %%cl, %2, %0\n\t" |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
244 : "=r" (result1) |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
245 : "0" (result1), "r" (result2), "c" (index)); |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
246 #else |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
247 result1<<= (index&0x1F); |
|
199
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
248 result2= (result2>>1) >> (31-(index&0x1F)); |
|
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
249 result1|= result2; |
|
193
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
250 #endif |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
251 result1>>= 32 - n; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
252 index+= n; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
253 s->index= index; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
254 |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
255 return result1; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
256 #else //ALIGNED_BITSTREAM |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
257 int index= s->index; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
258 uint32_t result= be2me_32( unaligned32( ((uint8_t *)s->buffer)+(index>>3) ) ); |
|
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
259 |
|
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
260 result<<= (index&0x07); |
|
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
261 result>>= 32 - n; |
|
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
262 index+= n; |
|
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
263 s->index= index; |
|
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
264 |
|
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
265 return result; |
|
193
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
266 #endif //!ALIGNED_BITSTREAM |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
267 #else //ALT_BITSTREAM_READER |
|
20
907b67420d84
inlineing common case of get_bits() -> gives 2speedup. more optim coming soon...
arpi_esp
parents:
10
diff
changeset
|
268 if(s->bit_cnt>=n){ |
|
907b67420d84
inlineing common case of get_bits() -> gives 2speedup. more optim coming soon...
arpi_esp
parents:
10
diff
changeset
|
269 /* most common case here */ |
|
907b67420d84
inlineing common case of get_bits() -> gives 2speedup. more optim coming soon...
arpi_esp
parents:
10
diff
changeset
|
270 unsigned int val = s->bit_buf >> (32 - n); |
|
907b67420d84
inlineing common case of get_bits() -> gives 2speedup. more optim coming soon...
arpi_esp
parents:
10
diff
changeset
|
271 s->bit_buf <<= n; |
|
907b67420d84
inlineing common case of get_bits() -> gives 2speedup. more optim coming soon...
arpi_esp
parents:
10
diff
changeset
|
272 s->bit_cnt -= n; |
|
907b67420d84
inlineing common case of get_bits() -> gives 2speedup. more optim coming soon...
arpi_esp
parents:
10
diff
changeset
|
273 #ifdef STATS |
|
907b67420d84
inlineing common case of get_bits() -> gives 2speedup. more optim coming soon...
arpi_esp
parents:
10
diff
changeset
|
274 st_bit_counts[st_current_index] += n; |
|
907b67420d84
inlineing common case of get_bits() -> gives 2speedup. more optim coming soon...
arpi_esp
parents:
10
diff
changeset
|
275 #endif |
|
907b67420d84
inlineing common case of get_bits() -> gives 2speedup. more optim coming soon...
arpi_esp
parents:
10
diff
changeset
|
276 return val; |
|
907b67420d84
inlineing common case of get_bits() -> gives 2speedup. more optim coming soon...
arpi_esp
parents:
10
diff
changeset
|
277 } |
|
907b67420d84
inlineing common case of get_bits() -> gives 2speedup. more optim coming soon...
arpi_esp
parents:
10
diff
changeset
|
278 return get_bits_long(s,n); |
|
193
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
279 #endif //!ALT_BITSTREAM_READER |
|
20
907b67420d84
inlineing common case of get_bits() -> gives 2speedup. more optim coming soon...
arpi_esp
parents:
10
diff
changeset
|
280 } |
|
907b67420d84
inlineing common case of get_bits() -> gives 2speedup. more optim coming soon...
arpi_esp
parents:
10
diff
changeset
|
281 |
| 21 | 282 static inline unsigned int get_bits1(GetBitContext *s){ |
|
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
283 #ifdef ALT_BITSTREAM_READER |
|
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
284 int index= s->index; |
|
193
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
285 uint8_t result= s->buffer[ index>>3 ]; |
|
199
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
286 result<<= (index&0x07); |
|
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
287 result>>= 8 - 1; |
|
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
288 index++; |
|
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
289 s->index= index; |
|
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
290 |
|
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
291 return result; |
|
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
292 #else |
| 21 | 293 if(s->bit_cnt>0){ |
| 294 /* most common case here */ | |
| 295 unsigned int val = s->bit_buf >> 31; | |
| 296 s->bit_buf <<= 1; | |
| 297 s->bit_cnt--; | |
| 298 #ifdef STATS | |
| 299 st_bit_counts[st_current_index]++; | |
| 300 #endif | |
| 301 return val; | |
| 302 } | |
| 303 return get_bits_long(s,1); | |
|
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
304 #endif |
| 21 | 305 } |
| 306 | |
| 144 | 307 /* This function is identical to get_bits(), the only */ |
| 308 /* diference is that it doesn't touch the buffer */ | |
| 309 /* it is usefull to see the buffer. */ | |
| 310 static inline unsigned int show_bits(GetBitContext *s, int n) | |
| 311 { | |
|
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
312 #ifdef ALT_BITSTREAM_READER |
|
193
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
313 #ifdef ALIGNED_BITSTREAM |
|
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
314 int index= s->index; |
|
193
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
315 uint32_t result1= be2me_32( ((uint32_t *)s->buffer)[index>>5] ); |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
316 uint32_t result2= be2me_32( ((uint32_t *)s->buffer)[(index>>5) + 1] ); |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
317 #ifdef ARCH_X86 |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
318 asm ("shldl %%cl, %2, %0\n\t" |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
319 : "=r" (result1) |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
320 : "0" (result1), "r" (result2), "c" (index)); |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
321 #else |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
322 result1<<= (index&0x1F); |
|
199
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
323 result2= (result2>>1) >> (31-(index&0x1F)); |
|
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
324 result1|= result2; |
|
193
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
325 #endif |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
326 result1>>= 32 - n; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
327 |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
328 return result1; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
329 #else //ALIGNED_BITSTREAM |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
330 int index= s->index; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
331 uint32_t result= be2me_32( unaligned32( ((uint8_t *)s->buffer)+(index>>3) ) ); |
|
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
332 |
|
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
333 result<<= (index&0x07); |
|
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
334 result>>= 32 - n; |
|
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
335 |
|
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
336 return result; |
|
193
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
337 #endif //!ALIGNED_BITSTREAM |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
338 #else //ALT_BITSTREAM_READER |
| 144 | 339 if(s->bit_cnt>=n) { |
| 340 /* most common case here */ | |
| 341 unsigned int val = s->bit_buf >> (32 - n); | |
| 342 return val; | |
| 343 } | |
| 344 return show_bits_long(s,n); | |
|
193
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
345 #endif //!ALT_BITSTREAM_READER |
| 144 | 346 } |
| 347 | |
| 21 | 348 static inline void skip_bits(GetBitContext *s, int n){ |
|
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
349 #ifdef ALT_BITSTREAM_READER |
|
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
350 s->index+= n; |
|
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
351 #else |
| 21 | 352 if(s->bit_cnt>=n){ |
| 353 /* most common case here */ | |
| 354 s->bit_buf <<= n; | |
| 355 s->bit_cnt -= n; | |
| 356 #ifdef STATS | |
| 357 st_bit_counts[st_current_index] += n; | |
| 358 #endif | |
| 359 } else { | |
| 360 get_bits_long(s,n); | |
| 361 } | |
|
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
362 #endif |
| 21 | 363 } |
| 364 | |
| 365 static inline void skip_bits1(GetBitContext *s){ | |
|
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
366 #ifdef ALT_BITSTREAM_READER |
|
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
367 s->index++; |
|
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
368 #else |
| 21 | 369 if(s->bit_cnt>0){ |
| 370 /* most common case here */ | |
| 371 s->bit_buf <<= 1; | |
| 372 s->bit_cnt--; | |
| 373 #ifdef STATS | |
| 374 st_bit_counts[st_current_index]++; | |
| 375 #endif | |
| 376 } else { | |
| 377 get_bits_long(s,1); | |
| 378 } | |
|
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
379 #endif |
| 21 | 380 } |
| 381 | |
| 85 | 382 static inline int get_bits_count(GetBitContext *s) |
| 383 { | |
|
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
384 #ifdef ALT_BITSTREAM_READER |
|
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
385 return s->index; |
|
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
386 #else |
| 85 | 387 return (s->buf_ptr - s->buf) * 8 - s->bit_cnt; |
|
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
388 #endif |
| 85 | 389 } |
| 21 | 390 |
| 0 | 391 void align_get_bits(GetBitContext *s); |
| 392 int init_vlc(VLC *vlc, int nb_bits, int nb_codes, | |
| 393 const void *bits, int bits_wrap, int bits_size, | |
| 394 const void *codes, int codes_wrap, int codes_size); | |
| 395 void free_vlc(VLC *vlc); | |
| 396 | |
|
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
397 #ifdef ALT_BITSTREAM_READER |
|
199
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
398 #ifdef ALIGNED_BITSTREAM |
|
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
399 #ifdef ARCH_X86 |
|
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
400 #define SHOW_BITS(s, val, n) \ |
|
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
401 val= be2me_32( ((uint32_t *)(s)->buffer)[bit_cnt>>5] );\ |
|
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
402 {uint32_t result2= be2me_32( ((uint32_t *)(s)->buffer)[(bit_cnt>>5) + 1] );\ |
|
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
403 asm ("shldl %%cl, %2, %0\n\t"\ |
|
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
404 : "=r" (val)\ |
|
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
405 : "0" (val), "r" (result2), "c" (bit_cnt));\ |
|
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
406 ((uint32_t)val)>>= 32 - n;} |
|
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
407 #else //ARCH_X86 |
|
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
408 #define SHOW_BITS(s, val, n) \ |
|
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
409 val= be2me_32( ((uint32_t *)(s)->buffer)[bit_cnt>>5] );\ |
|
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
410 {uint32_t result2= be2me_32( ((uint32_t *)(s)->buffer)[(bit_cnt>>5) + 1] );\ |
|
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
411 val<<= (bit_cnt&0x1F);\ |
|
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
412 result2= (result2>>1) >> (31-(bit_cnt&0x1F));\ |
|
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
413 val|= result2;\ |
|
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
414 ((uint32_t)val)>>= 32 - n;} |
|
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
415 #endif //!ARCH_X86 |
|
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
416 #else //ALIGNED_BITSTREAM |
|
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
417 #define SHOW_BITS(s, val, n) \ |
|
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
418 val= be2me_32( unaligned32( ((uint8_t *)(s)->buffer)+(bit_cnt>>3) ) );\ |
|
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
419 val<<= (bit_cnt&0x07);\ |
|
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
420 ((uint32_t)val)>>= 32 - n; |
|
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
421 #endif // !ALIGNED_BITSTREAM |
|
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
422 #define FLUSH_BITS(n) bit_cnt+=n; |
|
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
423 #define SAVE_BITS(s) bit_cnt= (s)->index; |
|
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
424 #define RESTORE_BITS(s) (s)->index= bit_cnt; |
|
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
425 #else |
|
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
426 |
| 0 | 427 /* macro to go faster */ |
| 428 /* n must be <= 24 */ | |
| 429 /* XXX: optimize buffer end test */ | |
| 430 #define SHOW_BITS(s, val, n)\ | |
| 431 {\ | |
| 432 if (bit_cnt < n && buf_ptr < (s)->buf_end) {\ | |
| 433 bit_buf |= *buf_ptr++ << (24 - bit_cnt);\ | |
| 434 bit_cnt += 8;\ | |
| 435 if (bit_cnt < n && buf_ptr < (s)->buf_end) {\ | |
| 436 bit_buf |= *buf_ptr++ << (24 - bit_cnt);\ | |
| 437 bit_cnt += 8;\ | |
| 438 if (bit_cnt < n && buf_ptr < (s)->buf_end) {\ | |
| 439 bit_buf |= *buf_ptr++ << (24 - bit_cnt);\ | |
| 440 bit_cnt += 8;\ | |
| 441 }\ | |
| 442 }\ | |
| 443 }\ | |
| 444 val = bit_buf >> (32 - n);\ | |
| 445 } | |
| 446 | |
| 447 /* SHOW_BITS with n1 >= n must be been done before */ | |
| 448 #define FLUSH_BITS(n)\ | |
| 449 {\ | |
| 450 bit_buf <<= n;\ | |
| 451 bit_cnt -= n;\ | |
| 452 } | |
| 453 | |
| 454 #define SAVE_BITS(s) \ | |
| 455 {\ | |
| 456 bit_cnt = (s)->bit_cnt;\ | |
| 457 bit_buf = (s)->bit_buf;\ | |
| 458 buf_ptr = (s)->buf_ptr;\ | |
| 459 } | |
| 460 | |
| 461 #define RESTORE_BITS(s) \ | |
| 462 {\ | |
| 463 (s)->buf_ptr = buf_ptr;\ | |
| 464 (s)->bit_buf = bit_buf;\ | |
| 465 (s)->bit_cnt = bit_cnt;\ | |
| 466 } | |
|
192
1e5f64be86fc
another bitstream reader code (faster on intel cpus) - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
151
diff
changeset
|
467 #endif // !ALT_BITSTREAM_READER |
|
193
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
468 |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
469 static inline int get_vlc(GetBitContext *s, VLC *vlc) |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
470 { |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
471 int code, n, nb_bits, index; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
472 INT16 *table_codes; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
473 INT8 *table_bits; |
|
199
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
474 int bit_cnt; |
|
193
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
475 #ifndef ALT_BITSTREAM_READER |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
476 UINT32 bit_buf; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
477 UINT8 *buf_ptr; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
478 #endif |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
479 |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
480 SAVE_BITS(s); |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
481 nb_bits = vlc->bits; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
482 table_codes = vlc->table_codes; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
483 table_bits = vlc->table_bits; |
|
199
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
484 |
|
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
485 #ifdef FAST_GET_FIRST_VLC |
|
193
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
486 SHOW_BITS(s, index, nb_bits); |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
487 code = table_codes[index]; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
488 n = table_bits[index]; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
489 if (n > 0) { |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
490 /* most common case (90%)*/ |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
491 FLUSH_BITS(n); |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
492 RESTORE_BITS(s); |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
493 return code; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
494 } else if (n == 0) { |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
495 return -1; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
496 } else { |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
497 FLUSH_BITS(nb_bits); |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
498 nb_bits = -n; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
499 table_codes = vlc->table_codes + code; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
500 table_bits = vlc->table_bits + code; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
501 } |
|
199
0f1dba8fc617
(commited by michael / arpi was crazy enough to give me his password)
arpi_esp
parents:
193
diff
changeset
|
502 #endif |
|
193
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
503 for(;;) { |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
504 SHOW_BITS(s, index, nb_bits); |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
505 code = table_codes[index]; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
506 n = table_bits[index]; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
507 if (n > 0) { |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
508 /* most common case */ |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
509 FLUSH_BITS(n); |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
510 #ifdef STATS |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
511 st_bit_counts[st_current_index] += n; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
512 #endif |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
513 break; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
514 } else if (n == 0) { |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
515 return -1; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
516 } else { |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
517 FLUSH_BITS(nb_bits); |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
518 #ifdef STATS |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
519 st_bit_counts[st_current_index] += nb_bits; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
520 #endif |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
521 nb_bits = -n; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
522 table_codes = vlc->table_codes + code; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
523 table_bits = vlc->table_bits + code; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
524 } |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
525 } |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
526 RESTORE_BITS(s); |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
527 return code; |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
528 } |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
529 |
|
b691dd3e9088
aligned bitstream support (optional) - patch by ichael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
192
diff
changeset
|
530 |
| 0 | 531 /* define it to include statistics code (useful only for optimizing |
| 532 codec efficiency */ | |
| 533 //#define STATS | |
| 534 | |
| 535 #ifdef STATS | |
| 536 | |
| 537 enum { | |
| 538 ST_UNKNOWN, | |
| 539 ST_DC, | |
| 540 ST_INTRA_AC, | |
| 541 ST_INTER_AC, | |
| 542 ST_INTRA_MB, | |
| 543 ST_INTER_MB, | |
| 544 ST_MV, | |
| 545 ST_NB, | |
| 546 }; | |
| 547 | |
| 548 extern int st_current_index; | |
| 549 extern unsigned int st_bit_counts[ST_NB]; | |
| 550 extern unsigned int st_out_bit_counts[ST_NB]; | |
| 551 | |
| 552 void print_stats(void); | |
| 553 #endif | |
| 554 | |
| 555 /* misc math functions */ | |
| 556 | |
|
151
ae0516eadae2
fixed gcc-3.0.x compilation (by Michael Niedermayer)
nickols_k
parents:
144
diff
changeset
|
557 static inline int av_log2(unsigned int v) |
| 0 | 558 { |
| 559 int n; | |
| 560 | |
| 561 n = 0; | |
| 562 if (v & 0xffff0000) { | |
| 563 v >>= 16; | |
| 564 n += 16; | |
| 565 } | |
| 566 if (v & 0xff00) { | |
| 567 v >>= 8; | |
| 568 n += 8; | |
| 569 } | |
| 570 if (v & 0xf0) { | |
| 571 v >>= 4; | |
| 572 n += 4; | |
| 573 } | |
| 574 if (v & 0xc) { | |
| 575 v >>= 2; | |
| 576 n += 2; | |
| 577 } | |
| 578 if (v & 0x2) { | |
| 579 n++; | |
| 580 } | |
| 581 return n; | |
| 582 } | |
| 583 | |
| 584 /* memory */ | |
| 585 void *av_mallocz(int size); | |
| 586 | |
| 587 #endif |
