os/ossrv/compressionlibs/ziplib/test/oldezlib/Zlib/inftrees.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* inftrees.c -- generate Huffman trees for efficient decoding
sl@0
     2
 * Copyright (C) 1995-1998 Mark Adler
sl@0
     3
 * For conditions of distribution and use, see copyright notice in zlib.h 
sl@0
     4
 */
sl@0
     5
sl@0
     6
#include "zutil.h"
sl@0
     7
#include "inftrees.h"
sl@0
     8
sl@0
     9
#if !defined(BUILDFIXED) && !defined(STDC)
sl@0
    10
#  define BUILDFIXED   /* non ANSI compilers may not accept inffixed.h */
sl@0
    11
#endif
sl@0
    12
sl@0
    13
const char inflate_copyright[] =
sl@0
    14
   " inflate 1.1.3 Copyright 1995-1998 Mark Adler ";
sl@0
    15
/*
sl@0
    16
  If you use the zlib library in a product, an acknowledgment is welcome
sl@0
    17
  in the documentation of your product. If for some reason you cannot
sl@0
    18
  include such an acknowledgment, I would appreciate that you keep this
sl@0
    19
  copyright string in the executable of your product.
sl@0
    20
 */
sl@0
    21
struct internal_state  {int dummy;}; /* for buggy compilers */
sl@0
    22
sl@0
    23
/* simplify the use of the inflate_huft type with some defines */
sl@0
    24
#define exop word.what.Exop
sl@0
    25
#define bits word.what.Bits
sl@0
    26
sl@0
    27
sl@0
    28
local int huft_build OF((
sl@0
    29
    uIntf *,            /* code lengths in bits */
sl@0
    30
    uInt,               /* number of codes */
sl@0
    31
    uInt,               /* number of "simple" codes */
sl@0
    32
    const uIntf *,      /* list of base values for non-simple codes */
sl@0
    33
    const uIntf *,      /* list of extra bits for non-simple codes */
sl@0
    34
    inflate_huft * FAR*,/* result: starting table */
sl@0
    35
    uIntf *,            /* maximum lookup bits (returns actual) */
sl@0
    36
    inflate_huft *,     /* space for trees */
sl@0
    37
    uInt *,             /* hufts used in space */
sl@0
    38
    uIntf * ));         /* space for values */
sl@0
    39
sl@0
    40
/* Tables for deflate from PKZIP's appnote.txt. */
sl@0
    41
local const uInt cplens[31] = { /* Copy lengths for literal codes 257..285 */
sl@0
    42
        3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31,
sl@0
    43
        35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0};
sl@0
    44
        /* see note #13 above about 258 */
sl@0
    45
local const uInt cplext[31] = { /* Extra bits for literal codes 257..285 */
sl@0
    46
        0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2,
sl@0
    47
        3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0, 112, 112}; /* 112==invalid */
sl@0
    48
local const uInt cpdist[30] = { /* Copy offsets for distance codes 0..29 */
sl@0
    49
        1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193,
sl@0
    50
        257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145,
sl@0
    51
        8193, 12289, 16385, 24577};
sl@0
    52
local const uInt cpdext[30] = { /* Extra bits for distance codes */
sl@0
    53
        0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6,
sl@0
    54
        7, 7, 8, 8, 9, 9, 10, 10, 11, 11,
sl@0
    55
        12, 12, 13, 13};
sl@0
    56
sl@0
    57
/*
sl@0
    58
   Huffman code decoding is performed using a multi-level table lookup.
sl@0
    59
   The fastest way to decode is to simply build a lookup table whose
sl@0
    60
   size is determined by the longest code.  However, the time it takes
sl@0
    61
   to build this table can also be a factor if the data being decoded
sl@0
    62
   is not very long.  The most common codes are necessarily the
sl@0
    63
   shortest codes, so those codes dominate the decoding time, and hence
sl@0
    64
   the speed.  The idea is you can have a shorter table that decodes the
sl@0
    65
   shorter, more probable codes, and then point to subsidiary tables for
sl@0
    66
   the longer codes.  The time it costs to decode the longer codes is
sl@0
    67
   then traded against the time it takes to make longer tables.
sl@0
    68
sl@0
    69
   This results of this trade are in the variables lbits and dbits
sl@0
    70
   below.  lbits is the number of bits the first level table for literal/
sl@0
    71
   length codes can decode in one step, and dbits is the same thing for
sl@0
    72
   the distance codes.  Subsequent tables are also less than or equal to
sl@0
    73
   those sizes.  These values may be adjusted either when all of the
sl@0
    74
   codes are shorter than that, in which case the longest code length in
sl@0
    75
   bits is used, or when the shortest code is *longer* than the requested
sl@0
    76
   table size, in which case the length of the shortest code in bits is
sl@0
    77
   used.
sl@0
    78
sl@0
    79
   There are two different values for the two tables, since they code a
sl@0
    80
   different number of possibilities each.  The literal/length table
sl@0
    81
   codes 286 possible values, or in a flat code, a little over eight
sl@0
    82
   bits.  The distance table codes 30 possible values, or a little less
sl@0
    83
   than five bits, flat.  The optimum values for speed end up being
sl@0
    84
   about one bit more than those, so lbits is 8+1 and dbits is 5+1.
sl@0
    85
   The optimum values may differ though from machine to machine, and
sl@0
    86
   possibly even between compilers.  Your mileage may vary.
sl@0
    87
 */
sl@0
    88
sl@0
    89
sl@0
    90
/* If BMAX needs to be larger than 16, then h and x[] should be uLong. */
sl@0
    91
#define BMAX 15         /* maximum bit length of any code */
sl@0
    92
sl@0
    93
local int huft_build(uIntf *b, uInt n, uInt s, const uIntf *d, const uIntf *e, inflate_huft * FAR *t, uIntf *m, inflate_huft *hp, uInt *hn, uIntf *v)
sl@0
    94
/* uIntf *b;                code lengths in bits (all assumed <= BMAX) */
sl@0
    95
/* uInt n;                  number of codes (assumed <= 288) */
sl@0
    96
/* uInt s;                  number of simple-valued codes (0..s-1) */
sl@0
    97
/* const uIntf *d;          list of base values for non-simple codes */
sl@0
    98
/* const uIntf *e;          list of extra bits for non-simple codes */
sl@0
    99
/* inflate_huft * FAR *t;   result: starting table */
sl@0
   100
/* uIntf *m;                maximum lookup bits, returns actual */
sl@0
   101
/* inflate_huft *hp;        space for trees */
sl@0
   102
/* uInt *hn;                hufts used in space */
sl@0
   103
/* uIntf *v;                working area: values in order of bit length */
sl@0
   104
sl@0
   105
/* Given a list of code lengths and a maximum table size, make a set of
sl@0
   106
   tables to decode that set of codes.  Return Z_OK on success, Z_BUF_ERROR
sl@0
   107
   if the given code set is incomplete (the tables are still built in this
sl@0
   108
   case), Z_DATA_ERROR if the input is invalid (an over-subscribed set of
sl@0
   109
   lengths), or Z_MEM_ERROR if not enough memory. */
sl@0
   110
{
sl@0
   111
sl@0
   112
  uInt a;                       /* counter for codes of length k */
sl@0
   113
  uInt c[BMAX+1];               /* bit length count table */
sl@0
   114
  uInt f;                       /* i repeats in table every f entries */
sl@0
   115
  int g;                        /* maximum code length */
sl@0
   116
  int h;                        /* table level */
sl@0
   117
  register uInt i;              /* counter, current code */
sl@0
   118
  register uInt j;              /* counter */
sl@0
   119
  register int k;               /* number of bits in current code */
sl@0
   120
  int l;                        /* bits per table (returned in m) */
sl@0
   121
  uInt mask;                    /* (1 << w) - 1, to avoid cc -O bug on HP */
sl@0
   122
  register uIntf *p;            /* pointer into c[], b[], or v[] */
sl@0
   123
  inflate_huft *q;              /* points to current table */
sl@0
   124
  struct inflate_huft_s r;      /* table entry for structure assignment */
sl@0
   125
  inflate_huft *u[BMAX];        /* table stack */
sl@0
   126
  register int w;               /* bits before this table == (l * h) */
sl@0
   127
  uInt x[BMAX+1];               /* bit offsets, then code stack */
sl@0
   128
  uIntf *xp;                    /* pointer into x */
sl@0
   129
  int y;                        /* number of dummy codes added */
sl@0
   130
  uInt z;                       /* number of entries in current table */
sl@0
   131
sl@0
   132
sl@0
   133
  /* Generate counts for each bit length */
sl@0
   134
  p = c;
sl@0
   135
#define C0 *p++ = 0;
sl@0
   136
#define C2 C0 C0 C0 C0
sl@0
   137
#define C4 C2 C2 C2 C2
sl@0
   138
  C4                            /* clear c[]--assume BMAX+1 is 16 */
sl@0
   139
  p = b;  i = n;
sl@0
   140
  do {
sl@0
   141
    c[*p++]++;                  /* assume all entries <= BMAX */
sl@0
   142
  } while (--i);
sl@0
   143
  if (c[0] == n)                /* null input--all zero length codes */
sl@0
   144
  {
sl@0
   145
    *t = (inflate_huft *)Z_NULL;
sl@0
   146
    *m = 0;
sl@0
   147
    return Z_OK;
sl@0
   148
  }
sl@0
   149
sl@0
   150
sl@0
   151
  /* Find minimum and maximum length, bound *m by those */
sl@0
   152
  l = *m;
sl@0
   153
  for (j = 1; j <= BMAX; j++)
sl@0
   154
    if (c[j])
sl@0
   155
      break;
sl@0
   156
  k = j;                        /* minimum code length */
sl@0
   157
  if ((uInt)l < j)
sl@0
   158
    l = j;
sl@0
   159
  for (i = BMAX; i; i--)
sl@0
   160
    if (c[i])
sl@0
   161
      break;
sl@0
   162
  g = i;                        /* maximum code length */
sl@0
   163
  if ((uInt)l > i)
sl@0
   164
    l = i;
sl@0
   165
  *m = l;
sl@0
   166
sl@0
   167
sl@0
   168
  /* Adjust last length count to fill out codes, if needed */
sl@0
   169
  for (y = 1 << j; j < i; j++, y <<= 1)
sl@0
   170
    if ((y -= c[j]) < 0)
sl@0
   171
      return Z_DATA_ERROR;
sl@0
   172
  if ((y -= c[i]) < 0)
sl@0
   173
    return Z_DATA_ERROR;
sl@0
   174
  c[i] += y;
sl@0
   175
sl@0
   176
sl@0
   177
  /* Generate starting offsets into the value table for each length */
sl@0
   178
  x[1] = j = 0;
sl@0
   179
  p = c + 1;  xp = x + 2;
sl@0
   180
  while (--i) {                 /* note that i == g from above */
sl@0
   181
    *xp++ = (j += *p++);
sl@0
   182
  }
sl@0
   183
sl@0
   184
sl@0
   185
  /* Make a table of values in order of bit lengths */
sl@0
   186
  p = b;  i = 0;
sl@0
   187
  do {
sl@0
   188
    if ((j = *p++) != 0)
sl@0
   189
      v[x[j]++] = i;
sl@0
   190
  } while (++i < n);
sl@0
   191
  n = x[g];                     /* set n to length of v */
sl@0
   192
sl@0
   193
sl@0
   194
  /* Generate the Huffman codes and for each, make the table entries */
sl@0
   195
  x[0] = i = 0;                 /* first Huffman code is zero */
sl@0
   196
  p = v;                        /* grab values in bit order */
sl@0
   197
  h = -1;                       /* no tables yet--level -1 */
sl@0
   198
  w = -l;                       /* bits decoded == (l * h) */
sl@0
   199
  u[0] = (inflate_huft *)Z_NULL;        /* just to keep compilers happy */
sl@0
   200
  q = (inflate_huft *)Z_NULL;   /* ditto */
sl@0
   201
  z = 0;                        /* ditto */
sl@0
   202
sl@0
   203
  /* go through the bit lengths (k already is bits in shortest code) */
sl@0
   204
  for (; k <= g; k++)
sl@0
   205
  {
sl@0
   206
    a = c[k];
sl@0
   207
    while (a--)
sl@0
   208
    {
sl@0
   209
      /* here i is the Huffman code of length k bits for value *p */
sl@0
   210
      /* make tables up to required level */
sl@0
   211
      while (k > w + l)
sl@0
   212
      {
sl@0
   213
        h++;
sl@0
   214
        w += l;                 /* previous table always l bits */
sl@0
   215
sl@0
   216
        /* compute minimum size table less than or equal to l bits */
sl@0
   217
        z = g - w;
sl@0
   218
        z = z > (uInt)l ? l : z;        /* table size upper limit */
sl@0
   219
        if ((f = 1 << (j = k - w)) > a + 1)     /* try a k-w bit table */
sl@0
   220
        {                       /* too few codes for k-w bit table */
sl@0
   221
          f -= a + 1;           /* deduct codes from patterns left */
sl@0
   222
          xp = c + k;
sl@0
   223
          if (j < z)
sl@0
   224
            while (++j < z)     /* try smaller tables up to z bits */
sl@0
   225
            {
sl@0
   226
              if ((f <<= 1) <= *++xp)
sl@0
   227
                break;          /* enough codes to use up j bits */
sl@0
   228
              f -= *xp;         /* else deduct codes from patterns */
sl@0
   229
            }
sl@0
   230
        }
sl@0
   231
        z = 1 << j;             /* table entries for j-bit table */
sl@0
   232
sl@0
   233
        /* allocate new table */
sl@0
   234
        if (*hn + z > MANY)     /* (note: doesn't matter for fixed) */
sl@0
   235
          return Z_MEM_ERROR;   /* not enough memory */
sl@0
   236
        u[h] = q = hp + *hn;
sl@0
   237
        *hn += z;
sl@0
   238
sl@0
   239
        /* connect to last table, if there is one */
sl@0
   240
        if (h)
sl@0
   241
        {
sl@0
   242
          x[h] = i;             /* save pattern for backing up */
sl@0
   243
          r.bits = (Byte)l;     /* bits to dump before this table */
sl@0
   244
          r.exop = (Byte)j;     /* bits in this table */
sl@0
   245
          j = i >> (w - l);
sl@0
   246
          r.base = (uInt)(q - u[h-1] - j);   /* offset to this table */
sl@0
   247
          u[h-1][j] = r;        /* connect to last table */
sl@0
   248
        }
sl@0
   249
        else
sl@0
   250
          *t = q;               /* first table is returned result */
sl@0
   251
      }
sl@0
   252
sl@0
   253
      /* set up table entry in r */
sl@0
   254
      r.bits = (Byte)(k - w);
sl@0
   255
      if (p >= v + n)
sl@0
   256
        r.exop = 128 + 64;      /* out of values--invalid code */
sl@0
   257
      else if (*p < s)
sl@0
   258
      {
sl@0
   259
        r.exop = (Byte)(*p < 256 ? 0 : 32 + 64);     /* 256 is end-of-block */
sl@0
   260
        r.base = *p++;          /* simple code is just the value */
sl@0
   261
      }
sl@0
   262
      else
sl@0
   263
      {
sl@0
   264
        r.exop = (Byte)(e[*p - s] + 16 + 64);/* non-simple--look up in lists */
sl@0
   265
        r.base = d[*p++ - s];
sl@0
   266
      }
sl@0
   267
sl@0
   268
      /* fill code-like entries with r */
sl@0
   269
      f = 1 << (k - w);
sl@0
   270
      for (j = i >> w; j < z; j += f)
sl@0
   271
        q[j] = r;
sl@0
   272
sl@0
   273
      /* backwards increment the k-bit code i */
sl@0
   274
      for (j = 1 << (k - 1); i & j; j >>= 1)
sl@0
   275
        i ^= j;
sl@0
   276
      i ^= j;
sl@0
   277
sl@0
   278
      /* backup over finished tables */
sl@0
   279
      mask = (1 << w) - 1;      /* needed on HP, cc -O bug */
sl@0
   280
      while ((i & mask) != x[h])
sl@0
   281
      {
sl@0
   282
        h--;                    /* don't need to update q */
sl@0
   283
        w -= l;
sl@0
   284
        mask = (1 << w) - 1;
sl@0
   285
      }
sl@0
   286
    }
sl@0
   287
  }
sl@0
   288
sl@0
   289
sl@0
   290
  /* Return Z_BUF_ERROR if we were given an incomplete table */
sl@0
   291
  return y != 0 && g != 1 ? Z_BUF_ERROR : Z_OK;
sl@0
   292
}
sl@0
   293
sl@0
   294
sl@0
   295
int inflate_trees_bits(uIntf *c, uIntf *bb, inflate_huft * FAR *tb, inflate_huft *hp, z_streamp z)
sl@0
   296
/* uIntf *c;                19 code lengths */
sl@0
   297
/* uIntf *bb;               bits tree desired/actual depth */
sl@0
   298
/* inflate_huft * FAR *tb;  bits tree result */
sl@0
   299
/* inflate_huft *hp;        space for trees */
sl@0
   300
/* z_streamp z;             for messages */
sl@0
   301
sl@0
   302
sl@0
   303
{
sl@0
   304
  int r;
sl@0
   305
  uInt hn = 0;          /* hufts used in space */
sl@0
   306
  uIntf *v;             /* work area for huft_build */
sl@0
   307
sl@0
   308
  if ((v = (uIntf*)ZALLOC(z, 19, sizeof(uInt))) == Z_NULL)
sl@0
   309
    return Z_MEM_ERROR;
sl@0
   310
  r = huft_build(c, 19, 19, (uIntf*)Z_NULL, (uIntf*)Z_NULL,
sl@0
   311
                 tb, bb, hp, &hn, v);
sl@0
   312
  if (r == Z_DATA_ERROR)
sl@0
   313
    z->msg = (char*)"oversubscribed dynamic bit lengths tree";
sl@0
   314
  else if (r == Z_BUF_ERROR || *bb == 0)
sl@0
   315
  {
sl@0
   316
    z->msg = (char*)"incomplete dynamic bit lengths tree";
sl@0
   317
    r = Z_DATA_ERROR;
sl@0
   318
  }
sl@0
   319
  ZFREE(z, v);
sl@0
   320
  return r;
sl@0
   321
}
sl@0
   322
sl@0
   323
sl@0
   324
int inflate_trees_dynamic(uInt nl, uInt nd, uIntf *c, uIntf *bl, uIntf *bd, inflate_huft * FAR *tl, inflate_huft * FAR *td, inflate_huft *hp, z_streamp z)
sl@0
   325
/* uInt nl;                 number of literal/length codes */
sl@0
   326
/* uInt nd;                 number of distance codes */
sl@0
   327
/* uIntf *c;                that many (total) code lengths */
sl@0
   328
/* uIntf *bl;               literal desired/actual bit depth */
sl@0
   329
/* uIntf *bd;               distance desired/actual bit depth */
sl@0
   330
/* inflate_huft * FAR *tl;  literal/length tree result */
sl@0
   331
/* inflate_huft * FAR *td;  distance tree result */
sl@0
   332
/* inflate_huft *hp;        space for trees */
sl@0
   333
/* z_streamp z;             for messages */
sl@0
   334
sl@0
   335
sl@0
   336
{
sl@0
   337
  int r;
sl@0
   338
  uInt hn = 0;          /* hufts used in space */
sl@0
   339
  uIntf *v;             /* work area for huft_build */
sl@0
   340
sl@0
   341
  /* allocate work area */
sl@0
   342
  if ((v = (uIntf*)ZALLOC(z, 288, sizeof(uInt))) == Z_NULL)
sl@0
   343
    return Z_MEM_ERROR;
sl@0
   344
sl@0
   345
  /* build literal/length tree */
sl@0
   346
  r = huft_build(c, nl, 257, cplens, cplext, tl, bl, hp, &hn, v);
sl@0
   347
  if (r != Z_OK || *bl == 0)
sl@0
   348
  {
sl@0
   349
    if (r == Z_DATA_ERROR)
sl@0
   350
      z->msg = (char*)"oversubscribed literal/length tree";
sl@0
   351
    else if (r != Z_MEM_ERROR)
sl@0
   352
    {
sl@0
   353
      z->msg = (char*)"incomplete literal/length tree";
sl@0
   354
      r = Z_DATA_ERROR;
sl@0
   355
    }
sl@0
   356
    ZFREE(z, v);
sl@0
   357
    return r;
sl@0
   358
  }
sl@0
   359
sl@0
   360
  /* build distance tree */
sl@0
   361
  r = huft_build(c + nl, nd, 0, cpdist, cpdext, td, bd, hp, &hn, v);
sl@0
   362
  if (r != Z_OK || (*bd == 0 && nl > 257))
sl@0
   363
  {
sl@0
   364
    if (r == Z_DATA_ERROR)
sl@0
   365
      z->msg = (char*)"oversubscribed distance tree";
sl@0
   366
    else if (r == Z_BUF_ERROR) {
sl@0
   367
#ifdef PKZIP_BUG_WORKAROUND
sl@0
   368
      r = Z_OK;
sl@0
   369
    }
sl@0
   370
#else
sl@0
   371
      z->msg = (char*)"incomplete distance tree";
sl@0
   372
      r = Z_DATA_ERROR;
sl@0
   373
    }
sl@0
   374
    else if (r != Z_MEM_ERROR)
sl@0
   375
    {
sl@0
   376
      z->msg = (char*)"empty distance tree with lengths";
sl@0
   377
      r = Z_DATA_ERROR;
sl@0
   378
    }
sl@0
   379
    ZFREE(z, v);
sl@0
   380
    return r;
sl@0
   381
#endif
sl@0
   382
  }
sl@0
   383
sl@0
   384
  /* done */
sl@0
   385
  ZFREE(z, v);
sl@0
   386
  return Z_OK;
sl@0
   387
}
sl@0
   388
sl@0
   389
sl@0
   390
/* build fixed tables only once--keep them here */
sl@0
   391
#ifdef BUILDFIXED
sl@0
   392
local int fixed_built = 0;
sl@0
   393
#define FIXEDH 544      /* number of hufts used by fixed tables */
sl@0
   394
local inflate_huft fixed_mem[FIXEDH];
sl@0
   395
local uInt fixed_bl;
sl@0
   396
local uInt fixed_bd;
sl@0
   397
local inflate_huft *fixed_tl;
sl@0
   398
local inflate_huft *fixed_td;
sl@0
   399
#else
sl@0
   400
#include "inffixed.h"
sl@0
   401
#endif
sl@0
   402
sl@0
   403
int inflate_trees_fixed(uIntf *bl, uIntf *bd, inflate_huft * FAR *tl, inflate_huft * FAR *td, z_streamp z)
sl@0
   404
/* uIntf *bl;                literal desired/actual bit depth */
sl@0
   405
/* uIntf *bd;                distance desired/actual bit depth */
sl@0
   406
/* inflate_huft * FAR *tl;   literal/length tree result */
sl@0
   407
/* inflate_huft * FAR *td;   distance tree result */
sl@0
   408
/* z_streamp z;              for memory allocation */
sl@0
   409
{
sl@0
   410
#ifdef BUILDFIXED
sl@0
   411
  /* build fixed tables if not already */
sl@0
   412
  if (!fixed_built)
sl@0
   413
  {
sl@0
   414
    int k;              /* temporary variable */
sl@0
   415
    uInt f = 0;         /* number of hufts used in fixed_mem */
sl@0
   416
    uIntf *c;           /* length list for huft_build */
sl@0
   417
    uIntf *v;           /* work area for huft_build */
sl@0
   418
sl@0
   419
    /* allocate memory */
sl@0
   420
    if ((c = (uIntf*)ZALLOC(z, 288, sizeof(uInt))) == Z_NULL)
sl@0
   421
      return Z_MEM_ERROR;
sl@0
   422
    if ((v = (uIntf*)ZALLOC(z, 288, sizeof(uInt))) == Z_NULL)
sl@0
   423
    {
sl@0
   424
      ZFREE(z, c);
sl@0
   425
      return Z_MEM_ERROR;
sl@0
   426
    }
sl@0
   427
sl@0
   428
    /* literal table */
sl@0
   429
    for (k = 0; k < 144; k++)
sl@0
   430
      c[k] = 8;
sl@0
   431
    for (; k < 256; k++)
sl@0
   432
      c[k] = 9;
sl@0
   433
    for (; k < 280; k++)
sl@0
   434
      c[k] = 7;
sl@0
   435
    for (; k < 288; k++)
sl@0
   436
      c[k] = 8;
sl@0
   437
    fixed_bl = 9;
sl@0
   438
    huft_build(c, 288, 257, cplens, cplext, &fixed_tl, &fixed_bl,
sl@0
   439
               fixed_mem, &f, v);
sl@0
   440
sl@0
   441
    /* distance table */
sl@0
   442
    for (k = 0; k < 30; k++)
sl@0
   443
      c[k] = 5;
sl@0
   444
    fixed_bd = 5;
sl@0
   445
    huft_build(c, 30, 0, cpdist, cpdext, &fixed_td, &fixed_bd,
sl@0
   446
               fixed_mem, &f, v);
sl@0
   447
sl@0
   448
    /* done */
sl@0
   449
    ZFREE(z, v);
sl@0
   450
    ZFREE(z, c);
sl@0
   451
    fixed_built = 1;
sl@0
   452
  }
sl@0
   453
#endif
sl@0
   454
  *bl = fixed_bl;
sl@0
   455
  *bd = fixed_bd;
sl@0
   456
  *tl = fixed_tl;
sl@0
   457
  *td = fixed_td;
sl@0
   458
  z->data_type = z->data_type; /* Here to prevent TOOLS2 warning about z being unused. */  
sl@0
   459
  return Z_OK;
sl@0
   460
}