Rev 52455 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
/* inftrees.h -- header to use inftrees.c* Copyright (C) 1995-2005 Mark Adler* For conditions of distribution and use, see copyright notice in zlib.h*//* WARNING: this file should *not* be used by applications. It ispart of the implementation of the compression library and issubject to change. Applications should only use zlib.h.*//* Structure for decoding tables. Each entry provides either theinformation needed to do the operation requested by the code thatindexed that table entry, or it provides a pointer to anothertable that indexes more bits of the code. op indicates whetherthe entry is a pointer to another table, a literal, a length ordistance, an end-of-block, or an invalid code. For a tablepointer, the low four bits of op is the number of index bits ofthat table. For a length or distance, the low four bits of opis the number of extra bits to get after the code. bits isthe number of bits in this code or part of the code to drop offof the bit buffer. val is the actual byte to output in the caseof a literal, the base length or distance, or the offset fromthe current table to the next table. Each entry is four bytes. */typedef struct {unsigned char op; /* operation, extra bits, table bits */unsigned char bits; /* bits in this part of the code */unsigned short val; /* offset in table or code value */} code;/* op values as set by inflate_table():00000000 - literal0000tttt - table link, tttt != 0 is the number of table index bits0001eeee - length or distance, eeee is the number of extra bits01100000 - end of block01000000 - invalid code*//* Maximum size of dynamic tree. The maximum found in a long but non-exhaustive search was 1444 code structures (852 for length/literalsand 592 for distances, the latter actually the result of anexhaustive search). The true maximum is not known, but the valuebelow is more than safe. */#define ENOUGH 2048#define MAXD 592/* Type of code to build for inftable() */typedef enum {CODES,LENS,DISTS} codetype;extern int inflate_table OF((codetype type, unsigned short FAR *lens,unsigned codes, code FAR * FAR *table,unsigned FAR *bits, unsigned short FAR *work));