X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=bitstream.c;h=f0f6012c84a1e4df95b7293f4b1c1459f937e275;hb=ed699ae871534d3e16f0be4cbabcea9c12af0848;hp=d9d5233a9cde81ad2265ab06fe425f549ab85c51;hpb=5a8158c86d30905b0684fdf4e74a9bb1d1ba767b;p=paraslash.git diff --git a/bitstream.c b/bitstream.c index d9d5233a..f0f6012c 100644 --- a/bitstream.c +++ b/bitstream.c @@ -132,10 +132,11 @@ static int build_table(struct vlc *vlc, int table_nb_bits, int nb_codes, /** * Build VLC decoding tables suitable for use with get_vlc(). * - * \param nb_bits Set the decoding table size (2^nb_bits) - * entries. The bigger it is, the faster is the decoding. But - * it should not be too big to save memory and L1 cache. '9' - * is a good compromise. + * \param vlc The structure to be initialized. + * + * \param nb_bits Set the decoding table size (2^nb_bits) entries. The bigger + * it is, the faster is the decoding. But it should not be too big to save + * memory and L1 cache. '9' is a good compromise. * * \param nb_codes Number of vlcs codes. * @@ -169,6 +170,8 @@ 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, must be * identical to nb_bits in init_vlc(). *