istereo

annotate libs/zlib/inftrees.h @ 26:862a3329a8f0

wohooo, added a shitload of code from zlib/libpng/libjpeg. When the good lord was raining shared libraries the iphone held a fucking umbrella...
author John Tsiombikas <nuclear@mutantstargoat.com>
date Thu, 08 Sep 2011 06:28:38 +0300
parents
children
rev   line source
nuclear@26 1 /* inftrees.h -- header to use inftrees.c
nuclear@26 2 * Copyright (C) 1995-2005 Mark Adler
nuclear@26 3 * For conditions of distribution and use, see copyright notice in zlib.h
nuclear@26 4 */
nuclear@26 5
nuclear@26 6 /* WARNING: this file should *not* be used by applications. It is
nuclear@26 7 part of the implementation of the compression library and is
nuclear@26 8 subject to change. Applications should only use zlib.h.
nuclear@26 9 */
nuclear@26 10
nuclear@26 11 /* Structure for decoding tables. Each entry provides either the
nuclear@26 12 information needed to do the operation requested by the code that
nuclear@26 13 indexed that table entry, or it provides a pointer to another
nuclear@26 14 table that indexes more bits of the code. op indicates whether
nuclear@26 15 the entry is a pointer to another table, a literal, a length or
nuclear@26 16 distance, an end-of-block, or an invalid code. For a table
nuclear@26 17 pointer, the low four bits of op is the number of index bits of
nuclear@26 18 that table. For a length or distance, the low four bits of op
nuclear@26 19 is the number of extra bits to get after the code. bits is
nuclear@26 20 the number of bits in this code or part of the code to drop off
nuclear@26 21 of the bit buffer. val is the actual byte to output in the case
nuclear@26 22 of a literal, the base length or distance, or the offset from
nuclear@26 23 the current table to the next table. Each entry is four bytes. */
nuclear@26 24 typedef struct {
nuclear@26 25 unsigned char op; /* operation, extra bits, table bits */
nuclear@26 26 unsigned char bits; /* bits in this part of the code */
nuclear@26 27 unsigned short val; /* offset in table or code value */
nuclear@26 28 } code;
nuclear@26 29
nuclear@26 30 /* op values as set by inflate_table():
nuclear@26 31 00000000 - literal
nuclear@26 32 0000tttt - table link, tttt != 0 is the number of table index bits
nuclear@26 33 0001eeee - length or distance, eeee is the number of extra bits
nuclear@26 34 01100000 - end of block
nuclear@26 35 01000000 - invalid code
nuclear@26 36 */
nuclear@26 37
nuclear@26 38 /* Maximum size of dynamic tree. The maximum found in a long but non-
nuclear@26 39 exhaustive search was 1444 code structures (852 for length/literals
nuclear@26 40 and 592 for distances, the latter actually the result of an
nuclear@26 41 exhaustive search). The true maximum is not known, but the value
nuclear@26 42 below is more than safe. */
nuclear@26 43 #define ENOUGH 2048
nuclear@26 44 #define MAXD 592
nuclear@26 45
nuclear@26 46 /* Type of code to build for inftable() */
nuclear@26 47 typedef enum {
nuclear@26 48 CODES,
nuclear@26 49 LENS,
nuclear@26 50 DISTS
nuclear@26 51 } codetype;
nuclear@26 52
nuclear@26 53 extern int inflate_table OF((codetype type, unsigned short FAR *lens,
nuclear@26 54 unsigned codes, code FAR * FAR *table,
nuclear@26 55 unsigned FAR *bits, unsigned short FAR *work));