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

  /prebuilts/go/darwin-x86/src/image/jpeg/
huffman.go 11 // maxCodeLength is the maximum (inclusive) number of bits in a Huffman code.
14 // maxNCodes is the maximum (inclusive) number of codes in a Huffman tree.
17 // lutSize is the log-2 size of the Huffman decoder's look-up table.
20 // huffman is a Huffman decoder, specified in section C.
21 type huffman struct { type
42 // Huffman data.
43 var errShortHuffmanData = FormatError("short Huffman data")
89 // processDHT processes a Define Huffman Table marker, and initializes a huffman
    [all...]
  /prebuilts/go/linux-x86/src/image/jpeg/
huffman.go 11 // maxCodeLength is the maximum (inclusive) number of bits in a Huffman code.
14 // maxNCodes is the maximum (inclusive) number of codes in a Huffman tree.
17 // lutSize is the log-2 size of the Huffman decoder's look-up table.
20 // huffman is a Huffman decoder, specified in section C.
21 type huffman struct { type
42 // Huffman data.
43 var errShortHuffmanData = FormatError("short Huffman data")
89 // processDHT processes a Define Huffman Table marker, and initializes a huffman
    [all...]
  /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::__anon31290::__anon31291
  /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 699 milliseconds