X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=bitstream.c;h=c2018b56f593264b15034b639c4103045220ab96;hp=a2a0537a47a9fe7d2c64ceadbb39bb41c58c0aba;hb=8eb77a20423c3dcc44c4584a082e981391272cb2;hpb=c8829b0bbe3c634ef64accfd88686c5895013e86 diff --git a/bitstream.c b/bitstream.c index a2a0537a..c2018b56 100644 --- a/bitstream.c +++ b/bitstream.c @@ -165,33 +165,29 @@ void free_vlc(struct vlc *vlc) * Parse a vlc code. * * \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. - * - * The \a bits parameter must be identical to the \a nb_bits value supplied to - * \ref init_vlc(). + * \param vlc The vlc tables to use. * * \return The vlc code. */ -int get_vlc(struct getbit_context *gbc, int16_t (*table)[2], int bits) +int get_vlc(struct getbit_context *gbc, const struct vlc *vlc) { int n, idx, nb_bits, code; - idx = show_bits(gbc, bits); - code = table[idx][0]; - n = table[idx][1]; + idx = show_bits(gbc, vlc->bits); + code = vlc->table[idx][0]; + n = vlc->table[idx][1]; if (n < 0) { - skip_bits(gbc, bits); + skip_bits(gbc, vlc->bits); nb_bits = -n; idx = show_bits(gbc, nb_bits) + code; - code = table[idx][0]; - n = table[idx][1]; + code = vlc->table[idx][0]; + n = vlc->table[idx][1]; if (n < 0) { skip_bits(gbc, nb_bits); nb_bits = -n; idx = show_bits(gbc, nb_bits) + code; - code = table[idx][0]; - n = table[idx][1]; + code = vlc->table[idx][0]; + n = vlc->table[idx][1]; } } skip_bits(gbc, n);