summaryrefslogtreecommitdiff
path: root/contrib/infback9/inflate9.h
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2011-09-09 23:22:48 -0700
committerMark Adler <madler@alumni.caltech.edu>2011-09-09 23:22:48 -0700
commitf81ba93d4a7e43fccf4730e5e7404ee765a76e3e (patch)
tree1f130d999e06b2d572bce1f99eaeaadd329a7ae7 /contrib/infback9/inflate9.h
parent4b5a43a219d51066c01ff2ab86af18b967f2d0dd (diff)
downloadzlib-1.2.0.6.tar.gz
zlib-1.2.0.6.tar.bz2
zlib-1.2.0.6.zip
zlib 1.2.0.6v1.2.0.6
Diffstat (limited to 'contrib/infback9/inflate9.h')
-rw-r--r--contrib/infback9/inflate9.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/contrib/infback9/inflate9.h b/contrib/infback9/inflate9.h
new file mode 100644
index 0000000..ee9a793
--- /dev/null
+++ b/contrib/infback9/inflate9.h
@@ -0,0 +1,47 @@
1/* inflate9.h -- internal inflate state definition
2 * Copyright (C) 1995-2003 Mark Adler
3 * For conditions of distribution and use, see copyright notice in zlib.h
4 */
5
6/* WARNING: this file should *not* be used by applications. It is
7 part of the implementation of the compression library and is
8 subject to change. Applications should only use zlib.h.
9 */
10
11/* Possible inflate modes between inflate() calls */
12typedef enum {
13 TYPE, /* i: waiting for type bits, including last-flag bit */
14 STORED, /* i: waiting for stored size (length and complement) */
15 TABLE, /* i: waiting for dynamic block table lengths */
16 LEN, /* i: waiting for length/lit code */
17 DONE, /* finished check, done -- remain here until reset */
18 BAD /* got a data error -- remain here until reset */
19} inflate_mode;
20
21/*
22 State transitions between above modes -
23
24 (most modes can go to the BAD mode -- not shown for clarity)
25
26 Read deflate blocks:
27 TYPE -> STORED or TABLE or LEN or DONE
28 STORED -> TYPE
29 TABLE -> LENLENS -> CODELENS -> LEN
30 Read deflate codes:
31 LEN -> LEN or TYPE
32 */
33
34/* state maintained between inflate() calls. Approximately 7K bytes. */
35struct inflate_state {
36 /* sliding window */
37 unsigned char FAR *window; /* allocated sliding window, if needed */
38 /* dynamic table building */
39 unsigned ncode; /* number of code length code lengths */
40 unsigned nlen; /* number of length code lengths */
41 unsigned ndist; /* number of distance code lengths */
42 unsigned have; /* number of code lengths in lens[] */
43 code FAR *next; /* next available space in codes[] */
44 unsigned short lens[320]; /* temporary storage for code lengths */
45 unsigned short work[288]; /* work area for code table building */
46 code codes[ENOUGH]; /* space for code tables */
47};