X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=bitstream.c;h=638d19a3579b02053bd281e29e7f39d2bf54495c;hp=fb638d0a83317568c89e00a56d6bd375e6326a41;hb=fc8dfbb416ff07cca08fbf4e13efcaa25e17cc54;hpb=d15d8509bcb56d6a40f2709c28cc6c9cc1f6739a diff --git a/bitstream.c b/bitstream.c index fb638d0a..638d19a3 100644 --- a/bitstream.c +++ b/bitstream.c @@ -13,10 +13,6 @@ /** \file bitstream.c Bitstream API for the wma decoder. */ -#include -#include -#include -#include #include #include "para.h" @@ -25,21 +21,23 @@ #include "wma.h" #include "bitstream.h" -/** Read an 8, 16, or 32 bit entity from a VLC table. */ -#define GET_DATA(v, table, i, size) \ -{\ - const uint8_t *ptr = (const uint8_t *)table + i * size; \ - switch (size) { \ - case 1: \ - v = *(const uint8_t *)ptr; \ - break; \ - case 2: \ - v = *(const uint16_t *)ptr; \ - break; \ - default: \ - v = *(const uint32_t *)ptr; \ - break; \ - } \ +static inline uint32_t get_data(const void *table, int i, int size) +{ + const uint8_t *ptr = (const uint8_t *)table + i * size; + uint32_t v; + + switch (size) { + case 1: + v = *(const uint8_t *)ptr; + break; + case 2: + v = *(const uint16_t *)ptr; + break; + default: + v = *(const uint32_t *)ptr; + break; + } + return v; } static void alloc_table(struct vlc *vlc, int size) @@ -72,12 +70,12 @@ static int build_table(struct vlc *vlc, int table_nb_bits, int nb_codes, /* map codes and compute auxiliary table sizes */ for (i = 0; i < nb_codes; i++) { - GET_DATA(n, bits, i, 1); + n = get_data(bits, i, 1); /* we accept tables with holes */ n -= n_prefix; if (n <= 0) continue; - GET_DATA(code, codes, i, codes_size); + code = get_data(codes, i, codes_size); /* if code matches the prefix, it is in the table */ if ((code >> n) != code_prefix) continue; @@ -168,29 +166,26 @@ void free_vlc(struct vlc *vlc) * \param gbc The getbit context structure. * \param table The vlc tables to use. * \param bits The number of bits which will be read at once. - * \param max_depth The number of times \a bits bits must be read to completely - * read the longest vlc code = (max_vlc_length + bits - 1) / bits. * * The \a bits parameter must be identical to the \a nb_bits value supplied to * \ref init_vlc(). * * \return The vlc code. */ -int get_vlc(struct getbit_context *gbc, VLC_TYPE(*table)[2], int bits, - int max_depth) +int get_vlc(struct getbit_context *gbc, VLC_TYPE(*table)[2], int bits) { int n, idx, nb_bits, code; idx = show_bits(gbc, bits); code = table[idx][0]; n = table[idx][1]; - if (max_depth > 1 && n < 0) { + if (n < 0) { skip_bits(gbc, bits); nb_bits = -n; idx = show_bits(gbc, nb_bits) + code; code = table[idx][0]; n = table[idx][1]; - if (max_depth > 2 && n < 0) { + if (n < 0) { skip_bits(gbc, nb_bits); nb_bits = -n; idx = show_bits(gbc, nb_bits) + code;