1 /* zconf.h -- configuration of the zlib compression library
2 * Copyright (C) 1995-1998 Jean-loup Gailly.
3 * For conditions of distribution and use, see copyright notice in zlib.h
10 /* The memory requirements for deflate are (in bytes):
11 (1 << (windowBits+2)) + (1 << (memLevel+9))
12 that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values)
13 plus a few kilobytes for small objects. For example, if you want to reduce
14 the default memory requirements from 256K to 128K, compile with
15 make CFLAGS="-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7"
16 Of course this will generally degrade compression (there's no free lunch).
18 The memory requirements for inflate are (in bytes) 1 << windowBits
19 that is, 32K for windowBits=15 (default value) plus a few kilobytes
23 /* Maximum value for memLevel in deflateInit2 */
25 # define MAX_MEM_LEVEL 8
28 /* Maximum value for windowBits in deflateInit2 and inflateInit2.
29 * WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files
30 * created by gzip. (Files created by minigzip can still be extracted by
34 # define MAX_WBITS 15 /* 32K LZ77 window */
37 /* default windowBits for decompression. MAX_WBITS is for compression only */
39 # define DEF_WBITS MAX_WBITS
42 /* default memLevel */
43 #if MAX_MEM_LEVEL >= 8
44 # define DEF_MEM_LEVEL 8
46 # define DEF_MEM_LEVEL MAX_MEM_LEVEL
49 /* Type declarations */
51 typedef unsigned char Byte; /* 8 bits */
52 typedef unsigned int uInt; /* 16 bits or more */
53 typedef unsigned long uLong; /* 32 bits or more */