HomeSort by relevance Sort by last modified time
    Searched defs:huffman (Results 1 - 3 of 3) sorted by null

  /hardware/intel/common/libva/va/
va_enc_jpeg.h 79 * \brief huffman:
80 * 0 - arithmetic, 1 - huffman
82 unsigned int huffman : 1; member in struct:_VAEncPictureParameterBufferJPEG::__anon39584::__anon39585
  /external/zlib/src/contrib/blast/
blast.c 93 * Huffman code decoding tables. count[1..MAXBITS] is the number of symbols of
99 struct huffman { struct
105 * Decode a code from the stream s using huffman table h. Return the symbol or
125 local int decode(struct state *s, struct huffman *h)
175 * Huffman code for n symbols, construct the tables required to decode those
187 local int construct(struct huffman *h, const unsigned char *rep, int n)
250 * terminated by an end code. Literals are either Huffman coded or
291 static struct huffman litcode = {litcnt, litsym}; /* length code */
292 static struct huffman lencode = {lencnt, lensym}; /* length code */
293 static struct huffman distcode = {distcnt, distsym};/* distance code *
    [all...]
  /external/zlib/src/contrib/puff/
puff.c 38 * - Remove longest from struct huffman -- not needed
200 * Huffman code decoding tables. count[1..MAXBITS] is the number of symbols of
206 struct huffman { struct
212 * Decode a code from the stream s using huffman table h. Return the symbol or
235 local int decode(struct state *s, const struct huffman *h)
263 local int decode(struct state *s, const struct huffman *h)
310 * Huffman code for n symbols, construct the tables required to decode those
340 local int construct(struct huffman *h, const short *length, int n)
388 * pairs terminated by and end-of-block code. Literals are simply Huffman
437 const struct huffman *lencode
    [all...]

Completed in 93 milliseconds