comparison bitstream.h @ 4795:522e52c630bd libavcodec

typos/grammar
author diego
date Sat, 07 Apr 2007 14:09:20 +0000
parents 6ac364a4ce2b
children 90d7898ff5d5
comparison
equal deleted inserted replaced
4794:2c9f06854306 4795:522e52c630bd
871 871
872 /** 872 /**
873 * parses a vlc code, faster then get_vlc() 873 * parses a vlc code, faster then get_vlc()
874 * @param bits is the number of bits which will be read at once, must be 874 * @param bits is the number of bits which will be read at once, must be
875 * identical to nb_bits in init_vlc() 875 * identical to nb_bits in init_vlc()
876 * @param max_depth is the number of times bits bits must be readed to completly 876 * @param max_depth is the number of times bits bits must be read to completely
877 * read the longest vlc code 877 * read the longest vlc code
878 * = (max_vlc_length + bits - 1) / bits 878 * = (max_vlc_length + bits - 1) / bits
879 */ 879 */
880 static av_always_inline int get_vlc2(GetBitContext *s, VLC_TYPE (*table)[2], 880 static av_always_inline int get_vlc2(GetBitContext *s, VLC_TYPE (*table)[2],
881 int bits, int max_depth) 881 int bits, int max_depth)