26 #ifndef AVCODEC_GET_BITS_H
27 #define AVCODEC_GET_BITS_H
31 #include "libavutil/common.h"
32 #include "libavutil/intreadwrite.h"
33 #include "libavutil/log.h"
49 #ifndef UNCHECKED_BITSTREAM_READER
50 #define UNCHECKED_BITSTREAM_READER !CONFIG_SAFE_BITSTREAM_READER
57 #if !UNCHECKED_BITSTREAM_READER
58 int size_in_bits_plus8;
62 #define VLC_TYPE int16_t
120 #ifdef LONG_BITSTREAM_READER
121 # define MIN_CACHE_BITS 32
123 # define MIN_CACHE_BITS 25
126 #if UNCHECKED_BITSTREAM_READER
127 #define OPEN_READER(name, gb) \
128 unsigned int name ## _index = (gb)->index; \
129 unsigned int av_unused name ## _cache = 0
131 #define HAVE_BITS_REMAINING(name, gb) 1
133 #define OPEN_READER(name, gb) \
134 unsigned int name ## _index = (gb)->index; \
135 unsigned int av_unused name ## _cache = 0; \
136 unsigned int av_unused name ## _size_plus8 = (gb)->size_in_bits_plus8
138 #define HAVE_BITS_REMAINING(name, gb) name ## _index < name ## _size_plus8
141 #define CLOSE_READER(name, gb) (gb)->index = name ## _index
143 #ifdef BITSTREAM_READER_LE
145 # ifdef LONG_BITSTREAM_READER
146 # define UPDATE_CACHE(name, gb) name ## _cache = \
147 AV_RL64((gb)->buffer + (name ## _index >> 3)) >> (name ## _index & 7)
149 # define UPDATE_CACHE(name, gb) name ## _cache = \
150 AV_RL32((gb)->buffer + (name ## _index >> 3)) >> (name ## _index & 7)
153 # define SKIP_CACHE(name, gb, num) name ## _cache >>= (num)
157 # ifdef LONG_BITSTREAM_READER
158 # define UPDATE_CACHE(name, gb) name ## _cache = \
159 AV_RB64((gb)->buffer + (name ## _index >> 3)) >> (32 - (name ## _index & 7))
161 # define UPDATE_CACHE(name, gb) name ## _cache = \
162 AV_RB32((gb)->buffer + (name ## _index >> 3)) << (name ## _index & 7)
165 # define SKIP_CACHE(name, gb, num) name ## _cache <<= (num)
169 #if UNCHECKED_BITSTREAM_READER
170 # define SKIP_COUNTER(name, gb, num) name ## _index += (num)
172 # define SKIP_COUNTER(name, gb, num) \
173 name ## _index = FFMIN(name ## _size_plus8, name ## _index + (num))
176 #define SKIP_BITS(name, gb, num) \
178 SKIP_CACHE(name, gb, num); \
179 SKIP_COUNTER(name, gb, num); \
182 #define LAST_SKIP_BITS(name, gb, num) SKIP_COUNTER(name, gb, num)
184 #ifdef BITSTREAM_READER_LE
185 # define SHOW_UBITS(name, gb, num) zero_extend(name ## _cache, num)
186 # define SHOW_SBITS(name, gb, num) sign_extend(name ## _cache, num)
188 # define SHOW_UBITS(name, gb, num) NEG_USR32(name ## _cache, num)
189 # define SHOW_SBITS(name, gb, num) NEG_SSR32(name ## _cache, num)
192 #define GET_CACHE(name, gb) ((uint32_t) name ## _cache)
201 #if UNCHECKED_BITSTREAM_READER
223 return (
NEG_USR32(sign ^ cache, n) ^ sign) - sign;
275 #ifdef BITSTREAM_READER_LE
276 result >>= index & 7;
279 result <<= index & 7;
282 #if !UNCHECKED_BITSTREAM_READER
283 if (s->
index < s->size_in_bits_plus8)
309 #ifdef BITSTREAM_READER_LE
311 return ret | (
get_bits(s, n - 16) << 16);
313 int ret =
get_bits(s, 16) << (n - 16);
327 #ifdef BITSTREAM_READER_LE
381 if (bit_size > INT_MAX - 7 || bit_size < 0 || !buffer) {
382 buffer_size = bit_size = 0;
387 buffer_size = (bit_size + 7) >> 3;
391 #if !UNCHECKED_BITSTREAM_READER
392 s->size_in_bits_plus8 = bit_size + 8;
411 if (byte_size > INT_MAX / 8)
424 #define init_vlc(vlc, nb_bits, nb_codes, \
425 bits, bits_wrap, bits_size, \
426 codes, codes_wrap, codes_size, \
428 ff_init_vlc_sparse(vlc, nb_bits, nb_codes, \
429 bits, bits_wrap, bits_size, \
430 codes, codes_wrap, codes_size, \
434 const void *
bits,
int bits_wrap,
int bits_size,
435 const void *codes,
int codes_wrap,
int codes_size,
436 const void *symbols,
int symbols_wrap,
int symbols_size,
440 #define INIT_VLC_LE 2
441 #define INIT_VLC_USE_NEW_STATIC 4
443 #define INIT_VLC_STATIC(vlc, bits, a, b, c, d, e, f, g, static_size) \
445 static VLC_TYPE table[static_size][2]; \
446 (vlc)->table = table; \
447 (vlc)->table_allocated = static_size; \
448 init_vlc(vlc, bits, a, b, c, d, e, f, g, INIT_VLC_USE_NEW_STATIC); \
456 #define GET_VLC(code, name, gb, table, bits, max_depth) \
459 unsigned int index; \
461 index = SHOW_UBITS(name, gb, bits); \
462 code = table[index][0]; \
463 n = table[index][1]; \
465 if (max_depth > 1 && n < 0) { \
466 LAST_SKIP_BITS(name, gb, bits); \
467 UPDATE_CACHE(name, gb); \
471 index = SHOW_UBITS(name, gb, nb_bits) + code; \
472 code = table[index][0]; \
473 n = table[index][1]; \
474 if (max_depth > 2 && n < 0) { \
475 LAST_SKIP_BITS(name, gb, nb_bits); \
476 UPDATE_CACHE(name, gb); \
480 index = SHOW_UBITS(name, gb, nb_bits) + code; \
481 code = table[index][0]; \
482 n = table[index][1]; \
485 SKIP_BITS(name, gb, n); \
488 #define GET_RL_VLC(level, run, name, gb, table, bits, \
489 max_depth, need_update) \
492 unsigned int index; \
494 index = SHOW_UBITS(name, gb, bits); \
495 level = table[index].level; \
496 n = table[index].len; \
498 if (max_depth > 1 && n < 0) { \
499 SKIP_BITS(name, gb, bits); \
501 UPDATE_CACHE(name, gb); \
506 index = SHOW_UBITS(name, gb, nb_bits) + level; \
507 level = table[index].level; \
508 n = table[index].len; \
510 run = table[index].run; \
511 SKIP_BITS(name, gb, n); \
523 int bits,
int max_depth)
530 GET_VLC(code,
re, s, table, bits, max_depth);
563 static inline void print_bin(
int bits,
int n)
567 for (i = n - 1; i >= 0; i--)
569 for (i = n; i < 24; i++)
573 static inline int get_bits_trace(
GetBitContext *s,
int n,
const char *file,
574 const char *func,
int line)
586 int bits,
int max_depth,
const char *file,
587 const char *func,
int line)
591 int r =
get_vlc2(s, table, bits, max_depth);
595 print_bin(bits2, len);
598 bits2, len, r, pos, file, func, line);
603 static inline int get_xbits_trace(
GetBitContext *s,
int n,
const char *file,
604 const char *func,
int line)
616 #define get_bits(s, n) get_bits_trace(s , n, __FILE__, __PRETTY_FUNCTION__, __LINE__)
617 #define get_bits1(s) get_bits_trace(s, 1, __FILE__, __PRETTY_FUNCTION__, __LINE__)
618 #define get_xbits(s, n) get_xbits_trace(s, n, __FILE__, __PRETTY_FUNCTION__, __LINE__)
620 #define get_vlc(s, vlc) get_vlc_trace(s, (vlc)->table, (vlc)->bits, 3, __FILE__, __PRETTY_FUNCTION__, __LINE__)
621 #define get_vlc2(s, tab, bits, max) get_vlc_trace(s, tab, bits, max, __FILE__, __PRETTY_FUNCTION__, __LINE__)
623 #define tprintf(p, ...) av_log(p, AV_LOG_DEBUG, __VA_ARGS__)
626 #define tprintf(p, ...) { }
static unsigned int show_bits_long(GetBitContext *s, int n)
Show 0-32 bits.
static unsigned int show_bits1(GetBitContext *s)
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
static void skip_bits_long(GetBitContext *s, int n)
void av_log(void *avcl, int level, const char *fmt,...) av_printf_format(3
Send the specified message to the log if the level is less than or equal to the current av_log_level...
static int get_sbits(GetBitContext *s, int n)
static int get_sbits_long(GetBitContext *s, int n)
Read 0-32 bits as a signed integer.
static int get_bits_count(const GetBitContext *s)
static const uint8_t bits2[81]
static int get_bits_left(GetBitContext *gb)
static uint64_t get_bits64(GetBitContext *s, int n)
#define UPDATE_CACHE(name, gb)
void ff_free_vlc(VLC *vlc)
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
#define CLOSE_READER(name, gb)
static int check_marker(GetBitContext *s, const char *msg)
int ff_init_vlc_sparse(VLC *vlc, int nb_bits, int nb_codes, const void *bits, int bits_wrap, int bits_size, const void *codes, int codes_wrap, int codes_size, const void *symbols, int symbols_wrap, int symbols_size, int flags)
static unsigned int show_bits(GetBitContext *s, int n)
Show 1-25 bits.
#define LAST_SKIP_BITS(name, gb, num)
static av_always_inline int get_vlc2(GetBitContext *s, VLC_TYPE(*table)[2], int bits, int max_depth)
Parse a vlc code.
#define GET_VLC(code, name, gb, table, bits, max_depth)
If the vlc code is invalid and max_depth=1, then no bits will be removed.
#define SHOW_UBITS(name, gb, num)
static int decode210(GetBitContext *gb)
#define AV_LOG_INFO
Standard information.
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
static int get_xbits(GetBitContext *s, int n)
read mpeg1 dc style vlc (sign bit + mantisse with no MSB).
#define OPEN_READER(name, gb)
static unsigned int get_bits1(GetBitContext *s)
static void skip_bits1(GetBitContext *s)
static void skip_bits(GetBitContext *s, int n)
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
#define GET_CACHE(name, gb)
static unsigned int get_bits_long(GetBitContext *s, int n)
Read 0-32 bits.
static av_const int sign_extend(int val, unsigned bits)
#define SHOW_SBITS(name, gb, num)
const uint8_t * buffer_end
static int decode012(GetBitContext *gb)
VLC_TYPE(* table)[2]
code, bits
static const uint8_t * align_get_bits(GetBitContext *s)