trees.c
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:41k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /* trees.c -- output deflated data using Huffman coding
  2.  * Copyright (C) 1995-1996 Jean-loup Gailly
  3.  * For conditions of distribution and use, see copyright notice in zlib.h 
  4.  */
  5. /* This file was modified since it was taken from the zlib distribution */
  6. /*
  7.  *  ALGORITHM
  8.  *
  9.  *      The "deflation" process uses several Huffman trees. The more
  10.  *      common source values are represented by shorter bit sequences.
  11.  *
  12.  *      Each code tree is stored in a compressed form which is itself
  13.  * a Huffman encoding of the lengths of all the code strings (in
  14.  * ascending order by source values).  The actual code strings are
  15.  * reconstructed from the lengths in the inflate process, as described
  16.  * in the deflate specification.
  17.  *
  18.  *  REFERENCES
  19.  *
  20.  *      Deutsch, L.P.,"'Deflate' Compressed Data Format Specification".
  21.  *      Available in ftp.uu.net:/pub/archiving/zip/doc/deflate-1.1.doc
  22.  *
  23.  *      Storer, James A.
  24.  *          Data Compression:  Methods and Theory, pp. 49-50.
  25.  *          Computer Science Press, 1988.  ISBN 0-7167-8156-5.
  26.  *
  27.  *      Sedgewick, R.
  28.  *          Algorithms, p290.
  29.  *          Addison-Wesley, 1983. ISBN 0-201-06672-6.
  30.  */
  31. /* $Id: trees.c,v 1.1 2000/03/31 20:13:16 relyea%netscape.com Exp $ */
  32. #include "deflate.h"
  33. #ifdef DEBUG
  34. #  include <ctype.h>
  35. #endif
  36. /* ===========================================================================
  37.  * Constants
  38.  */
  39. #define MAX_BL_BITS 7
  40. /* Bit length codes must not exceed MAX_BL_BITS bits */
  41. #define END_BLOCK 256
  42. /* end of block literal code */
  43. #define REP_3_6      16
  44. /* repeat previous bit length 3-6 times (2 bits of repeat count) */
  45. #define REPZ_3_10    17
  46. /* repeat a zero length 3-10 times  (3 bits of repeat count) */
  47. #define REPZ_11_138  18
  48. /* repeat a zero length 11-138 times  (7 bits of repeat count) */
  49. local int extra_lbits[LENGTH_CODES] /* extra bits for each length code */
  50.    = {0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0};
  51. local int extra_dbits[D_CODES] /* extra bits for each distance code */
  52.    = {0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13};
  53. local int extra_blbits[BL_CODES]/* extra bits for each bit length code */
  54.    = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7};
  55. local uch bl_order[BL_CODES]
  56.    = {16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15};
  57. /* The lengths of the bit length codes are sent in order of decreasing
  58.  * probability, to avoid transmitting the lengths for unused bit length codes.
  59.  */
  60. #define Buf_size (8 * 2*sizeof(char))
  61. /* Number of bits used within bi_buf. (bi_buf might be implemented on
  62.  * more than 16 bits on some systems.)
  63.  */
  64. /* ===========================================================================
  65.  * Local data. These are initialized only once.
  66.  */
  67. local ct_data static_ltree[L_CODES+2];
  68. /* The static literal tree. Since the bit lengths are imposed, there is no
  69.  * need for the L_CODES extra codes used during heap construction. However
  70.  * The codes 286 and 287 are needed to build a canonical tree (see _tr_init
  71.  * below).
  72.  */
  73. local ct_data static_dtree[D_CODES];
  74. /* The static distance tree. (Actually a trivial tree since all codes use
  75.  * 5 bits.)
  76.  */
  77. local uch dist_code[512];
  78. /* distance codes. The first 256 values correspond to the distances
  79.  * 3 .. 258, the last 256 values correspond to the top 8 bits of
  80.  * the 15 bit distances.
  81.  */
  82. local uch length_code[MAX_MATCH-MIN_MATCH+1];
  83. /* length code for each normalized match length (0 == MIN_MATCH) */
  84. local int base_length[LENGTH_CODES];
  85. /* First normalized length for each code (0 = MIN_MATCH) */
  86. local int base_dist[D_CODES];
  87. /* First normalized distance for each code (0 = distance of 1) */
  88. struct static_tree_desc_s {
  89.     ct_data *static_tree;        /* static tree or NULL */
  90.     intf    *extra_bits;         /* extra bits for each code or NULL */
  91.     int     extra_base;          /* base index for extra_bits */
  92.     int     elems;               /* max number of elements in the tree */
  93.     int     max_length;          /* max bit length for the codes */
  94. };
  95. local static_tree_desc  static_l_desc =
  96. {static_ltree, extra_lbits, LITERALS+1, L_CODES, MAX_BITS};
  97. local static_tree_desc  static_d_desc =
  98. {static_dtree, extra_dbits, 0,          D_CODES, MAX_BITS};
  99. local static_tree_desc  static_bl_desc =
  100. {(ct_data *)0, extra_blbits, 0,      BL_CODES, MAX_BL_BITS};
  101. /* ===========================================================================
  102.  * Local (static) routines in this file.
  103.  */
  104. local void tr_static_init OF((void));
  105. local void init_block     OF((deflate_state *s));
  106. local void pqdownheap     OF((deflate_state *s, ct_data *tree, int k));
  107. local void gen_bitlen     OF((deflate_state *s, tree_desc *desc));
  108. local void gen_codes      OF((ct_data *tree, int max_code, ushf *bl_count));
  109. local void build_tree     OF((deflate_state *s, tree_desc *desc));
  110. local void scan_tree      OF((deflate_state *s, ct_data *tree, int max_code));
  111. local void send_tree      OF((deflate_state *s, ct_data *tree, int max_code));
  112. local int  build_bl_tree  OF((deflate_state *s));
  113. local void send_all_trees OF((deflate_state *s, int lcodes, int dcodes,
  114.                               int blcodes));
  115. local void compress_block OF((deflate_state *s, ct_data *ltree,
  116.                               ct_data *dtree));
  117. local void set_data_type  OF((deflate_state *s));
  118. local unsigned bi_reverse OF((unsigned value, int length));
  119. local void bi_windup      OF((deflate_state *s));
  120. local void bi_flush       OF((deflate_state *s));
  121. local void copy_block     OF((deflate_state *s, charf *buf, unsigned len,
  122.                               int header));
  123. #ifndef DEBUG_NEVER
  124. #  define send_code(s, c, tree) send_bits(s, tree[c].Code, tree[c].Len)
  125.    /* Send a code of the given tree. c and tree must not have side effects */
  126. #else /* DEBUG */
  127. #  define send_code(s, c, tree) 
  128.      { if (verbose>2) fprintf(stderr,"ncd %3d ",(c)); 
  129.        send_bits(s, tree[c].Code, tree[c].Len); }
  130. #endif
  131. #define d_code(dist) 
  132.    ((dist) < 256 ? dist_code[dist] : dist_code[256+((dist)>>7)])
  133. /* Mapping from a distance to a distance code. dist is the distance - 1 and
  134.  * must not have side effects. dist_code[256] and dist_code[257] are never
  135.  * used.
  136.  */
  137. /* ===========================================================================
  138.  * Output a short LSB first on the stream.
  139.  * IN assertion: there is enough room in pendingBuf.
  140.  */
  141. #define put_short(s, w) { 
  142.     put_byte(s, (uch)((w) & 0xff)); 
  143.     put_byte(s, (uch)((ush)(w) >> 8)); 
  144. }
  145. /* ===========================================================================
  146.  * Send a value on a given number of bits.
  147.  * IN assertion: length <= 16 and value fits in length bits.
  148.  */
  149. #ifdef DEBUG
  150. local void send_bits      OF((deflate_state *s, int value, int length));
  151. local void send_bits(s, value, length)
  152.     deflate_state *s;
  153.     int value;  /* value to send */
  154.     int length; /* number of bits */
  155. {
  156.     Tracevv((stderr," l %2d v %4x ", length, value));
  157.     Assert(length > 0 && length <= 15, "invalid length");
  158.     s->bits_sent += (ulg)length;
  159.     /* If not enough room in bi_buf, use (valid) bits from bi_buf and
  160.      * (16 - bi_valid) bits from value, leaving (width - (16-bi_valid))
  161.      * unused bits in value.
  162.      */
  163.     if (s->bi_valid > (int)Buf_size - length) {
  164.         s->bi_buf |= (value << s->bi_valid);
  165.         put_short(s, s->bi_buf);
  166.         s->bi_buf = (ush)value >> (Buf_size - s->bi_valid);
  167.         s->bi_valid += length - Buf_size;
  168.     } else {
  169.         s->bi_buf |= value << s->bi_valid;
  170.         s->bi_valid += length;
  171.     }
  172. }
  173. #else /* !DEBUG */
  174. #define send_bits(s, value, length) 
  175. { int len = length;
  176.   if (s->bi_valid > (int)Buf_size - len) {
  177.     int val = value;
  178.     s->bi_buf |= (val << s->bi_valid);
  179.     put_short(s, s->bi_buf);
  180.     s->bi_buf = (ush)val >> (Buf_size - s->bi_valid);
  181.     s->bi_valid += len - Buf_size;
  182.   } else {
  183.     s->bi_buf |= (value) << s->bi_valid;
  184.     s->bi_valid += len;
  185.   }
  186. }
  187. #endif /* DEBUG */
  188. #ifndef MAX
  189. #define MAX(a,b) (a >= b ? a : b)
  190. #endif
  191. /* the arguments must not have side effects */
  192. /* ===========================================================================
  193.  * Initialize the various 'constant' tables. In a multi-threaded environment,
  194.  * this function may be called by two threads concurrently, but this is
  195.  * harmless since both invocations do exactly the same thing.
  196.  */
  197. local void tr_static_init()
  198. {
  199.     static int static_init_done = 0;
  200.     int n;        /* iterates over tree elements */
  201.     int bits;     /* bit counter */
  202.     int length;   /* length value */
  203.     int code;     /* code value */
  204.     int dist;     /* distance index */
  205.     ush bl_count[MAX_BITS+1];
  206.     /* number of codes at each bit length for an optimal tree */
  207.     if (static_init_done) return;
  208.     /* Initialize the mapping length (0..255) -> length code (0..28) */
  209.     length = 0;
  210.     for (code = 0; code < LENGTH_CODES-1; code++) {
  211.         base_length[code] = length;
  212.         for (n = 0; n < (1<<extra_lbits[code]); n++) {
  213.             length_code[length++] = (uch)code;
  214.         }
  215.     }
  216.     Assert (length == 256, "tr_static_init: length != 256");
  217.     /* Note that the length 255 (match length 258) can be represented
  218.      * in two different ways: code 284 + 5 bits or code 285, so we
  219.      * overwrite length_code[255] to use the best encoding:
  220.      */
  221.     length_code[length-1] = (uch)code;
  222.     /* Initialize the mapping dist (0..32K) -> dist code (0..29) */
  223.     dist = 0;
  224.     for (code = 0 ; code < 16; code++) {
  225.         base_dist[code] = dist;
  226.         for (n = 0; n < (1<<extra_dbits[code]); n++) {
  227.             dist_code[dist++] = (uch)code;
  228.         }
  229.     }
  230.     Assert (dist == 256, "tr_static_init: dist != 256");
  231.     dist >>= 7; /* from now on, all distances are divided by 128 */
  232.     for ( ; code < D_CODES; code++) {
  233.         base_dist[code] = dist << 7;
  234.         for (n = 0; n < (1<<(extra_dbits[code]-7)); n++) {
  235.             dist_code[256 + dist++] = (uch)code;
  236.         }
  237.     }
  238.     Assert (dist == 256, "tr_static_init: 256+dist != 512");
  239.     /* Construct the codes of the static literal tree */
  240.     for (bits = 0; bits <= MAX_BITS; bits++) bl_count[bits] = 0;
  241.     n = 0;
  242.     while (n <= 143) static_ltree[n++].Len = 8, bl_count[8]++;
  243.     while (n <= 255) static_ltree[n++].Len = 9, bl_count[9]++;
  244.     while (n <= 279) static_ltree[n++].Len = 7, bl_count[7]++;
  245.     while (n <= 287) static_ltree[n++].Len = 8, bl_count[8]++;
  246.     /* Codes 286 and 287 do not exist, but we must include them in the
  247.      * tree construction to get a canonical Huffman tree (longest code
  248.      * all ones)
  249.      */
  250.     gen_codes((ct_data *)static_ltree, L_CODES+1, bl_count);
  251.     /* The static distance tree is trivial: */
  252.     for (n = 0; n < D_CODES; n++) {
  253.         static_dtree[n].Len = 5;
  254.         static_dtree[n].Code = bi_reverse((unsigned)n, 5);
  255.     }
  256.     static_init_done = 1;
  257. }
  258. /* ===========================================================================
  259.  * Initialize the tree data structures for a new zlib stream.
  260.  */
  261. void _tr_init(s)
  262.     deflate_state *s;
  263. {
  264.     tr_static_init();
  265.     s->compressed_len = 0L;
  266.     s->l_desc.dyn_tree = s->dyn_ltree;
  267.     s->l_desc.stat_desc = &static_l_desc;
  268.     s->d_desc.dyn_tree = s->dyn_dtree;
  269.     s->d_desc.stat_desc = &static_d_desc;
  270.     s->bl_desc.dyn_tree = s->bl_tree;
  271.     s->bl_desc.stat_desc = &static_bl_desc;
  272.     s->bi_buf = 0;
  273.     s->bi_valid = 0;
  274.     s->last_eob_len = 8; /* enough lookahead for inflate */
  275. #ifdef DEBUG
  276.     s->bits_sent = 0L;
  277. #endif
  278.     /* Initialize the first block of the first file: */
  279.     init_block(s);
  280. }
  281. /* ===========================================================================
  282.  * Initialize a new block.
  283.  */
  284. local void init_block(s)
  285.     deflate_state *s;
  286. {
  287.     int n; /* iterates over tree elements */
  288.     /* Initialize the trees. */
  289.     for (n = 0; n < L_CODES;  n++) s->dyn_ltree[n].Freq = 0;
  290.     for (n = 0; n < D_CODES;  n++) s->dyn_dtree[n].Freq = 0;
  291.     for (n = 0; n < BL_CODES; n++) s->bl_tree[n].Freq = 0;
  292.     s->dyn_ltree[END_BLOCK].Freq = 1;
  293.     s->opt_len = s->static_len = 0L;
  294.     s->last_lit = s->matches = 0;
  295. }
  296. #define SMALLEST 1
  297. /* Index within the heap array of least frequent node in the Huffman tree */
  298. /* ===========================================================================
  299.  * Remove the smallest element from the heap and recreate the heap with
  300.  * one less element. Updates heap and heap_len.
  301.  */
  302. #define pqremove(s, tree, top) 
  303. {
  304.     top = s->heap[SMALLEST]; 
  305.     s->heap[SMALLEST] = s->heap[s->heap_len--]; 
  306.     pqdownheap(s, tree, SMALLEST); 
  307. }
  308. /* ===========================================================================
  309.  * Compares to subtrees, using the tree depth as tie breaker when
  310.  * the subtrees have equal frequency. This minimizes the worst case length.
  311.  */
  312. #define smaller(tree, n, m, depth) 
  313.    (tree[n].Freq < tree[m].Freq || 
  314.    (tree[n].Freq == tree[m].Freq && depth[n] <= depth[m]))
  315. /* ===========================================================================
  316.  * Restore the heap property by moving down the tree starting at node k,
  317.  * exchanging a node with the smallest of its two sons if necessary, stopping
  318.  * when the heap property is re-established (each father smaller than its
  319.  * two sons).
  320.  */
  321. local void pqdownheap(s, tree, k)
  322.     deflate_state *s;
  323.     ct_data *tree;  /* the tree to restore */
  324.     int k;               /* node to move down */
  325. {
  326.     int v = s->heap[k];
  327.     int j = k << 1;  /* left son of k */
  328.     while (j <= s->heap_len) {
  329.         /* Set j to the smallest of the two sons: */
  330.         if (j < s->heap_len &&
  331.             smaller(tree, s->heap[j+1], s->heap[j], s->depth)) {
  332.             j++;
  333.         }
  334.         /* Exit if v is smaller than both sons */
  335.         if (smaller(tree, v, s->heap[j], s->depth)) break;
  336.         /* Exchange v with the smallest son */
  337.         s->heap[k] = s->heap[j];  k = j;
  338.         /* And continue down the tree, setting j to the left son of k */
  339.         j <<= 1;
  340.     }
  341.     s->heap[k] = v;
  342. }
  343. /* ===========================================================================
  344.  * Compute the optimal bit lengths for a tree and update the total bit length
  345.  * for the current block.
  346.  * IN assertion: the fields freq and dad are set, heap[heap_max] and
  347.  *    above are the tree nodes sorted by increasing frequency.
  348.  * OUT assertions: the field len is set to the optimal bit length, the
  349.  *     array bl_count contains the frequencies for each bit length.
  350.  *     The length opt_len is updated; static_len is also updated if stree is
  351.  *     not null.
  352.  */
  353. local void gen_bitlen(s, desc)
  354.     deflate_state *s;
  355.     tree_desc *desc;    /* the tree descriptor */
  356. {
  357.     ct_data *tree  = desc->dyn_tree;
  358.     int max_code   = desc->max_code;
  359.     ct_data *stree = desc->stat_desc->static_tree;
  360.     intf *extra    = desc->stat_desc->extra_bits;
  361.     int base       = desc->stat_desc->extra_base;
  362.     int max_length = desc->stat_desc->max_length;
  363.     int h;              /* heap index */
  364.     int n, m;           /* iterate over the tree elements */
  365.     int bits;           /* bit length */
  366.     int xbits;          /* extra bits */
  367.     ush f;              /* frequency */
  368.     int overflow = 0;   /* number of elements with bit length too large */
  369.     for (bits = 0; bits <= MAX_BITS; bits++) s->bl_count[bits] = 0;
  370.     /* In a first pass, compute the optimal bit lengths (which may
  371.      * overflow in the case of the bit length tree).
  372.      */
  373.     tree[s->heap[s->heap_max]].Len = 0; /* root of the heap */
  374.     for (h = s->heap_max+1; h < HEAP_SIZE; h++) {
  375.         n = s->heap[h];
  376.         bits = tree[tree[n].Dad].Len + 1;
  377.         if (bits > max_length) bits = max_length, overflow++;
  378.         tree[n].Len = (ush)bits;
  379.         /* We overwrite tree[n].Dad which is no longer needed */
  380.         if (n > max_code) continue; /* not a leaf node */
  381.         s->bl_count[bits]++;
  382.         xbits = 0;
  383.         if (n >= base) xbits = extra[n-base];
  384.         f = tree[n].Freq;
  385.         s->opt_len += (ulg)f * (bits + xbits);
  386.         if (stree) s->static_len += (ulg)f * (stree[n].Len + xbits);
  387.     }
  388.     if (overflow == 0) return;
  389.     Trace((stderr,"nbit length overflown"));
  390.     /* This happens for example on obj2 and pic of the Calgary corpus */
  391.     /* Find the first bit length which could increase: */
  392.     do {
  393.         bits = max_length-1;
  394.         while (s->bl_count[bits] == 0) bits--;
  395.         s->bl_count[bits]--;      /* move one leaf down the tree */
  396.         s->bl_count[bits+1] += 2; /* move one overflow item as its brother */
  397.         s->bl_count[max_length]--;
  398.         /* The brother of the overflow item also moves one step up,
  399.          * but this does not affect bl_count[max_length]
  400.          */
  401.         overflow -= 2;
  402.     } while (overflow > 0);
  403.     /* Now recompute all bit lengths, scanning in increasing frequency.
  404.      * h is still equal to HEAP_SIZE. (It is simpler to reconstruct all
  405.      * lengths instead of fixing only the wrong ones. This idea is taken
  406.      * from 'ar' written by Haruhiko Okumura.)
  407.      */
  408.     for (bits = max_length; bits != 0; bits--) {
  409.         n = s->bl_count[bits];
  410.         while (n != 0) {
  411.             m = s->heap[--h];
  412.             if (m > max_code) continue;
  413.             if (tree[m].Len != (unsigned) bits) {
  414.                 Trace((stderr,"code %d bits %d->%dn", m, tree[m].Len, bits));
  415.                 s->opt_len += ((long)bits - (long)tree[m].Len)
  416.                               *(long)tree[m].Freq;
  417.                 tree[m].Len = (ush)bits;
  418.             }
  419.             n--;
  420.         }
  421.     }
  422. }
  423. /* ===========================================================================
  424.  * Generate the codes for a given tree and bit counts (which need not be
  425.  * optimal).
  426.  * IN assertion: the array bl_count contains the bit length statistics for
  427.  * the given tree and the field len is set for all tree elements.
  428.  * OUT assertion: the field code is set for all tree elements of non
  429.  *     zero code length.
  430.  */
  431. local void gen_codes (tree, max_code, bl_count)
  432.     ct_data *tree;             /* the tree to decorate */
  433.     int max_code;              /* largest code with non zero frequency */
  434.     ushf *bl_count;            /* number of codes at each bit length */
  435. {
  436.     ush next_code[MAX_BITS+1]; /* next code value for each bit length */
  437.     ush code = 0;              /* running code value */
  438.     int bits;                  /* bit index */
  439.     int n;                     /* code index */
  440.     /* The distribution counts are first used to generate the code values
  441.      * without bit reversal.
  442.      */
  443.     for (bits = 1; bits <= MAX_BITS; bits++) {
  444.         next_code[bits] = code = (code + bl_count[bits-1]) << 1;
  445.     }
  446.     /* Check that the bit counts in bl_count are consistent. The last code
  447.      * must be all ones.
  448.      */
  449.     Assert (code + bl_count[MAX_BITS]-1 == (1<<MAX_BITS)-1,
  450.             "inconsistent bit counts");
  451.     Tracev((stderr,"ngen_codes: max_code %d ", max_code));
  452.     for (n = 0;  n <= max_code; n++) {
  453.         int len = tree[n].Len;
  454.         if (len == 0) continue;
  455.         /* Now reverse the bits */
  456.         tree[n].Code = bi_reverse(next_code[len]++, len);
  457.         Tracecv(tree != static_ltree, (stderr,"nn %3d %c l %2d c %4x (%x) ",
  458.              n, (isgraph(n) ? n : ' '), len, tree[n].Code, next_code[len]-1));
  459.     }
  460. }
  461. /* ===========================================================================
  462.  * Construct one Huffman tree and assigns the code bit strings and lengths.
  463.  * Update the total bit length for the current block.
  464.  * IN assertion: the field freq is set for all tree elements.
  465.  * OUT assertions: the fields len and code are set to the optimal bit length
  466.  *     and corresponding code. The length opt_len is updated; static_len is
  467.  *     also updated if stree is not null. The field max_code is set.
  468.  */
  469. local void build_tree(s, desc)
  470.     deflate_state *s;
  471.     tree_desc *desc; /* the tree descriptor */
  472. {
  473.     ct_data *tree   = desc->dyn_tree;
  474.     ct_data *stree  = desc->stat_desc->static_tree;
  475.     int elems       = desc->stat_desc->elems;
  476.     int n, m;          /* iterate over heap elements */
  477.     int max_code = -1; /* largest code with non zero frequency */
  478.     int node;          /* new node being created */
  479.     /* Construct the initial heap, with least frequent element in
  480.      * heap[SMALLEST]. The sons of heap[n] are heap[2*n] and heap[2*n+1].
  481.      * heap[0] is not used.
  482.      */
  483.     s->heap_len = 0, s->heap_max = HEAP_SIZE;
  484.     for (n = 0; n < elems; n++) {
  485.         if (tree[n].Freq != 0) {
  486.             s->heap[++(s->heap_len)] = max_code = n;
  487.             s->depth[n] = 0;
  488.         } else {
  489.             tree[n].Len = 0;
  490.         }
  491.     }
  492.     /* The pkzip format requires that at least one distance code exists,
  493.      * and that at least one bit should be sent even if there is only one
  494.      * possible code. So to avoid special checks later on we force at least
  495.      * two codes of non zero frequency.
  496.      */
  497.     while (s->heap_len < 2) {
  498.         node = s->heap[++(s->heap_len)] = (max_code < 2 ? ++max_code : 0);
  499.         tree[node].Freq = 1;
  500.         s->depth[node] = 0;
  501.         s->opt_len--; if (stree) s->static_len -= stree[node].Len;
  502.         /* node is 0 or 1 so it does not have extra bits */
  503.     }
  504.     desc->max_code = max_code;
  505.     /* The elements heap[heap_len/2+1 .. heap_len] are leaves of the tree,
  506.      * establish sub-heaps of increasing lengths:
  507.      */
  508.     for (n = s->heap_len/2; n >= 1; n--) pqdownheap(s, tree, n);
  509.     /* Construct the Huffman tree by repeatedly combining the least two
  510.      * frequent nodes.
  511.      */
  512.     node = elems;              /* next internal node of the tree */
  513.     do {
  514.         pqremove(s, tree, n);  /* n = node of least frequency */
  515.         m = s->heap[SMALLEST]; /* m = node of next least frequency */
  516.         s->heap[--(s->heap_max)] = n; /* keep the nodes sorted by frequency */
  517.         s->heap[--(s->heap_max)] = m;
  518.         /* Create a new node father of n and m */
  519.         tree[node].Freq = tree[n].Freq + tree[m].Freq;
  520.         s->depth[node] = (uch) (MAX(s->depth[n], s->depth[m]) + 1);
  521.         tree[n].Dad = tree[m].Dad = (ush)node;
  522. #ifdef DUMP_BL_TREE
  523.         if (tree == s->bl_tree) {
  524.             fprintf(stderr,"nnode %d(%d), sons %d(%d) %d(%d)",
  525.                     node, tree[node].Freq, n, tree[n].Freq, m, tree[m].Freq);
  526.         }
  527. #endif
  528.         /* and insert the new node in the heap */
  529.         s->heap[SMALLEST] = node++;
  530.         pqdownheap(s, tree, SMALLEST);
  531.     } while (s->heap_len >= 2);
  532.     s->heap[--(s->heap_max)] = s->heap[SMALLEST];
  533.     /* At this point, the fields freq and dad are set. We can now
  534.      * generate the bit lengths.
  535.      */
  536.     gen_bitlen(s, (tree_desc *)desc);
  537.     /* The field len is now set, we can generate the bit codes */
  538.     gen_codes ((ct_data *)tree, max_code, s->bl_count);
  539. }
  540. /* ===========================================================================
  541.  * Scan a literal or distance tree to determine the frequencies of the codes
  542.  * in the bit length tree.
  543.  */
  544. local void scan_tree (s, tree, max_code)
  545.     deflate_state *s;
  546.     ct_data *tree;   /* the tree to be scanned */
  547.     int max_code;    /* and its largest code of non zero frequency */
  548. {
  549.     int n;                     /* iterates over all tree elements */
  550.     int prevlen = -1;          /* last emitted length */
  551.     int curlen;                /* length of current code */
  552.     int nextlen = tree[0].Len; /* length of next code */
  553.     int count = 0;             /* repeat count of the current code */
  554.     int max_count = 7;         /* max repeat count */
  555.     int min_count = 4;         /* min repeat count */
  556.     if (nextlen == 0) max_count = 138, min_count = 3;
  557.     tree[max_code+1].Len = (ush)0xffff; /* guard */
  558.     for (n = 0; n <= max_code; n++) {
  559.         curlen = nextlen; nextlen = tree[n+1].Len;
  560.         if (++count < max_count && curlen == nextlen) {
  561.             continue;
  562.         } else if (count < min_count) {
  563.             s->bl_tree[curlen].Freq += count;
  564.         } else if (curlen != 0) {
  565.             if (curlen != prevlen) s->bl_tree[curlen].Freq++;
  566.             s->bl_tree[REP_3_6].Freq++;
  567.         } else if (count <= 10) {
  568.             s->bl_tree[REPZ_3_10].Freq++;
  569.         } else {
  570.             s->bl_tree[REPZ_11_138].Freq++;
  571.         }
  572.         count = 0; prevlen = curlen;
  573.         if (nextlen == 0) {
  574.             max_count = 138, min_count = 3;
  575.         } else if (curlen == nextlen) {
  576.             max_count = 6, min_count = 3;
  577.         } else {
  578.             max_count = 7, min_count = 4;
  579.         }
  580.     }
  581. }
  582. /* ===========================================================================
  583.  * Send a literal or distance tree in compressed form, using the codes in
  584.  * bl_tree.
  585.  */
  586. local void send_tree (s, tree, max_code)
  587.     deflate_state *s;
  588.     ct_data *tree; /* the tree to be scanned */
  589.     int max_code;       /* and its largest code of non zero frequency */
  590. {
  591.     int n;                     /* iterates over all tree elements */
  592.     int prevlen = -1;          /* last emitted length */
  593.     int curlen;                /* length of current code */
  594.     int nextlen = tree[0].Len; /* length of next code */
  595.     int count = 0;             /* repeat count of the current code */
  596.     int max_count = 7;         /* max repeat count */
  597.     int min_count = 4;         /* min repeat count */
  598.     /* tree[max_code+1].Len = -1; */  /* guard already set */
  599.     if (nextlen == 0) max_count = 138, min_count = 3;
  600.     for (n = 0; n <= max_code; n++) {
  601.         curlen = nextlen; nextlen = tree[n+1].Len;
  602.         if (++count < max_count && curlen == nextlen) {
  603.             continue;
  604.         } else if (count < min_count) {
  605.             do { send_code(s, curlen, s->bl_tree); } while (--count != 0);
  606.         } else if (curlen != 0) {
  607.             if (curlen != prevlen) {
  608.                 send_code(s, curlen, s->bl_tree); count--;
  609.             }
  610.             Assert(count >= 3 && count <= 6, " 3_6?");
  611.             send_code(s, REP_3_6, s->bl_tree); send_bits(s, count-3, 2);
  612.         } else if (count <= 10) {
  613.             send_code(s, REPZ_3_10, s->bl_tree); send_bits(s, count-3, 3);
  614.         } else {
  615.             send_code(s, REPZ_11_138, s->bl_tree); send_bits(s, count-11, 7);
  616.         }
  617.         count = 0; prevlen = curlen;
  618.         if (nextlen == 0) {
  619.             max_count = 138, min_count = 3;
  620.         } else if (curlen == nextlen) {
  621.             max_count = 6, min_count = 3;
  622.         } else {
  623.             max_count = 7, min_count = 4;
  624.         }
  625.     }
  626. }
  627. /* ===========================================================================
  628.  * Construct the Huffman tree for the bit lengths and return the index in
  629.  * bl_order of the last bit length code to send.
  630.  */
  631. local int build_bl_tree(s)
  632.     deflate_state *s;
  633. {
  634.     int max_blindex;  /* index of last bit length code of non zero freq */
  635.     /* Determine the bit length frequencies for literal and distance trees */
  636.     scan_tree(s, (ct_data *)s->dyn_ltree, s->l_desc.max_code);
  637.     scan_tree(s, (ct_data *)s->dyn_dtree, s->d_desc.max_code);
  638.     /* Build the bit length tree: */
  639.     build_tree(s, (tree_desc *)(&(s->bl_desc)));
  640.     /* opt_len now includes the length of the tree representations, except
  641.      * the lengths of the bit lengths codes and the 5+5+4 bits for the counts.
  642.      */
  643.     /* Determine the number of bit length codes to send. The pkzip format
  644.      * requires that at least 4 bit length codes be sent. (appnote.txt says
  645.      * 3 but the actual value used is 4.)
  646.      */
  647.     for (max_blindex = BL_CODES-1; max_blindex >= 3; max_blindex--) {
  648.         if (s->bl_tree[bl_order[max_blindex]].Len != 0) break;
  649.     }
  650.     /* Update opt_len to include the bit length tree and counts */
  651.     s->opt_len += 3*(max_blindex+1) + 5+5+4;
  652.     Tracev((stderr, "ndyn trees: dyn %ld, stat %ld",
  653.             s->opt_len, s->static_len));
  654.     return max_blindex;
  655. }
  656. /* ===========================================================================
  657.  * Send the header for a block using dynamic Huffman trees: the counts, the
  658.  * lengths of the bit length codes, the literal tree and the distance tree.
  659.  * IN assertion: lcodes >= 257, dcodes >= 1, blcodes >= 4.
  660.  */
  661. local void send_all_trees(s, lcodes, dcodes, blcodes)
  662.     deflate_state *s;
  663.     int lcodes, dcodes, blcodes; /* number of codes for each tree */
  664. {
  665.     int rank;                    /* index in bl_order */
  666.     Assert (lcodes >= 257 && dcodes >= 1 && blcodes >= 4, "not enough codes");
  667.     Assert (lcodes <= L_CODES && dcodes <= D_CODES && blcodes <= BL_CODES,
  668.             "too many codes");
  669.     Tracev((stderr, "nbl counts: "));
  670.     send_bits(s, lcodes-257, 5); /* not +255 as stated in appnote.txt */
  671.     send_bits(s, dcodes-1,   5);
  672.     send_bits(s, blcodes-4,  4); /* not -3 as stated in appnote.txt */
  673.     for (rank = 0; rank < blcodes; rank++) {
  674.         Tracev((stderr, "nbl code %2d ", bl_order[rank]));
  675.         send_bits(s, s->bl_tree[bl_order[rank]].Len, 3);
  676.     }
  677.     Tracev((stderr, "nbl tree: sent %ld", s->bits_sent));
  678.     send_tree(s, (ct_data *)s->dyn_ltree, lcodes-1); /* literal tree */
  679.     Tracev((stderr, "nlit tree: sent %ld", s->bits_sent));
  680.     send_tree(s, (ct_data *)s->dyn_dtree, dcodes-1); /* distance tree */
  681.     Tracev((stderr, "ndist tree: sent %ld", s->bits_sent));
  682. }
  683. /* ===========================================================================
  684.  * Send a stored block
  685.  */
  686. void _tr_stored_block(s, buf, stored_len, eof)
  687.     deflate_state *s;
  688.     charf *buf;       /* input block */
  689.     ulg stored_len;   /* length of input block */
  690.     int eof;          /* true if this is the last block for a file */
  691. {
  692.     send_bits(s, (STORED_BLOCK<<1)+eof, 3);  /* send block type */
  693.     s->compressed_len = (s->compressed_len + 3 + 7) & (ulg)~7L;
  694.     s->compressed_len += (stored_len + 4) << 3;
  695.     copy_block(s, buf, (unsigned)stored_len, 1); /* with header */
  696. }
  697. /* ===========================================================================
  698.  * Send one empty static block to give enough lookahead for inflate.
  699.  * This takes 10 bits, of which 7 may remain in the bit buffer.
  700.  * The current inflate code requires 9 bits of lookahead. If the
  701.  * last two codes for the previous block (real code plus EOB) were coded
  702.  * on 5 bits or less, inflate may have only 5+3 bits of lookahead to decode
  703.  * the last real code. In this case we send two empty static blocks instead
  704.  * of one. (There are no problems if the previous block is stored or fixed.)
  705.  * To simplify the code, we assume the worst case of last real code encoded
  706.  * on one bit only.
  707.  */
  708. void _tr_align(s)
  709.     deflate_state *s;
  710. {
  711.     send_bits(s, STATIC_TREES<<1, 3);
  712.     send_code(s, END_BLOCK, static_ltree);
  713.     s->compressed_len += 10L; /* 3 for block type, 7 for EOB */
  714.     bi_flush(s);
  715.     /* Of the 10 bits for the empty block, we have already sent
  716.      * (10 - bi_valid) bits. The lookahead for the last real code (before
  717.      * the EOB of the previous block) was thus at least one plus the length
  718.      * of the EOB plus what we have just sent of the empty static block.
  719.      */
  720.     if (1 + s->last_eob_len + 10 - s->bi_valid < 9) {
  721.         send_bits(s, STATIC_TREES<<1, 3);
  722.         send_code(s, END_BLOCK, static_ltree);
  723.         s->compressed_len += 10L;
  724.         bi_flush(s);
  725.     }
  726.     s->last_eob_len = 7;
  727. }
  728. /* ===========================================================================
  729.  * Determine the best encoding for the current block: dynamic trees, static
  730.  * trees or store, and output the encoded block to the zip file. This function
  731.  * returns the total compressed length for the file so far.
  732.  */
  733. ulg _tr_flush_block(s, buf, stored_len, eof)
  734.     deflate_state *s;
  735.     charf *buf;       /* input block, or NULL if too old */
  736.     ulg stored_len;   /* length of input block */
  737.     int eof;          /* true if this is the last block for a file */
  738. {
  739.     ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
  740.     int max_blindex = 0;  /* index of last bit length code of non zero freq */
  741.     /* Build the Huffman trees unless a stored block is forced */
  742.     if (s->level > 0) {
  743.  /* Check if the file is ascii or binary */
  744. if (s->data_type == Z_UNKNOWN) set_data_type(s);
  745. /* Construct the literal and distance trees */
  746. build_tree(s, (tree_desc *)(&(s->l_desc)));
  747. Tracev((stderr, "nlit data: dyn %ld, stat %ld", s->opt_len,
  748. s->static_len));
  749. build_tree(s, (tree_desc *)(&(s->d_desc)));
  750. Tracev((stderr, "ndist data: dyn %ld, stat %ld", s->opt_len,
  751. s->static_len));
  752. /* At this point, opt_len and static_len are the total bit lengths of
  753.  * the compressed block data, excluding the tree representations.
  754.  */
  755. /* Build the bit length tree for the above two trees, and get the index
  756.  * in bl_order of the last bit length code to send.
  757.  */
  758. max_blindex = build_bl_tree(s);
  759. /* Determine the best encoding. Compute first the block length in bytes*/
  760. opt_lenb = (s->opt_len+3+7)>>3;
  761. static_lenb = (s->static_len+3+7)>>3;
  762. Tracev((stderr, "nopt %lu(%lu) stat %lu(%lu) stored %lu lit %u ",
  763. opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
  764. s->last_lit));
  765. if (static_lenb <= opt_lenb) opt_lenb = static_lenb;
  766.     } else {
  767.         Assert(buf != (char*)0, "lost buf");
  768. opt_lenb = static_lenb = stored_len + 5; /* force a stored block */
  769.     }
  770.     /* If compression failed and this is the first and last block,
  771.      * and if the .zip file can be seeked (to rewrite the local header),
  772.      * the whole file is transformed into a stored file:
  773.      */
  774. #ifdef STORED_FILE_OK
  775. #  ifdef FORCE_STORED_FILE
  776.     if (eof && s->compressed_len == 0L) { /* force stored file */
  777. #  else
  778.     if (stored_len <= opt_lenb && eof && s->compressed_len==0L && seekable()) {
  779. #  endif
  780.         /* Since LIT_BUFSIZE <= 2*WSIZE, the input data must be there: */
  781.         if (buf == (charf*)0) error ("block vanished");
  782.         copy_block(buf, (unsigned)stored_len, 0); /* without header */
  783.         s->compressed_len = stored_len << 3;
  784.         s->method = STORED;
  785.     } else
  786. #endif /* STORED_FILE_OK */
  787. #ifdef FORCE_STORED
  788.     if (buf != (char*)0) { /* force stored block */
  789. #else
  790.     if (stored_len+4 <= opt_lenb && buf != (char*)0) {
  791.                        /* 4: two words for the lengths */
  792. #endif
  793.         /* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE.
  794.          * Otherwise we can't have processed more than WSIZE input bytes since
  795.          * the last block flush, because compression would have been
  796.          * successful. If LIT_BUFSIZE <= WSIZE, it is never too late to
  797.          * transform a block into a stored block.
  798.          */
  799.         _tr_stored_block(s, buf, stored_len, eof);
  800. #ifdef FORCE_STATIC
  801.     } else if (static_lenb >= 0) { /* force static trees */
  802. #else
  803.     } else if (static_lenb == opt_lenb) {
  804. #endif
  805.         send_bits(s, (STATIC_TREES<<1)+eof, 3);
  806.         compress_block(s, (ct_data *)static_ltree, (ct_data *)static_dtree);
  807.         s->compressed_len += 3 + s->static_len;
  808.     } else {
  809.         send_bits(s, (DYN_TREES<<1)+eof, 3);
  810.         send_all_trees(s, s->l_desc.max_code+1, s->d_desc.max_code+1,
  811.                        max_blindex+1);
  812.         compress_block(s, (ct_data *)s->dyn_ltree, (ct_data *)s->dyn_dtree);
  813.         s->compressed_len += 3 + s->opt_len;
  814.     }
  815.     Assert (s->compressed_len == s->bits_sent, "bad compressed size");
  816.     init_block(s);
  817.     if (eof) {
  818.         bi_windup(s);
  819.         s->compressed_len += 7;  /* align on byte boundary */
  820.     }
  821.     Tracev((stderr,"ncomprlen %lu(%lu) ", s->compressed_len>>3,
  822.            s->compressed_len-7*eof));
  823.     return s->compressed_len >> 3;
  824. }
  825. /* ===========================================================================
  826.  * Save the match info and tally the frequency counts. Return true if
  827.  * the current block must be flushed.
  828.  */
  829. int _tr_tally (s, dist, lc)
  830.     deflate_state *s;
  831.     unsigned dist;  /* distance of matched string */
  832.     unsigned lc;    /* match length-MIN_MATCH or unmatched char (if dist==0) */
  833. {
  834.     s->d_buf[s->last_lit] = (ush)dist;
  835.     s->l_buf[s->last_lit++] = (uch)lc;
  836.     if (dist == 0) {
  837.         /* lc is the unmatched char */
  838.         s->dyn_ltree[lc].Freq++;
  839.     } else {
  840.         s->matches++;
  841.         /* Here, lc is the match length - MIN_MATCH */
  842.         dist--;             /* dist = match distance - 1 */
  843.         Assert((ush)dist < (ush)MAX_DIST(s) &&
  844.                (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
  845.                (ush)d_code(dist) < (ush)D_CODES,  "_tr_tally: bad match");
  846.         s->dyn_ltree[length_code[lc]+LITERALS+1].Freq++;
  847.         s->dyn_dtree[d_code(dist)].Freq++;
  848.     }
  849.     /* Try to guess if it is profitable to stop the current block here */
  850.     if (s->level > 2 && (s->last_lit & 0xfff) == 0) {
  851.         /* Compute an upper bound for the compressed length */
  852.         ulg out_length = (ulg)s->last_lit*8L;
  853.         ulg in_length = (ulg)((long)s->strstart - s->block_start);
  854.         int dcode;
  855.         for (dcode = 0; dcode < D_CODES; dcode++) {
  856.             out_length += (ulg)s->dyn_dtree[dcode].Freq *
  857.                 (5L+extra_dbits[dcode]);
  858.         }
  859.         out_length >>= 3;
  860.         Tracev((stderr,"nlast_lit %u, in %ld, out ~%ld(%ld%%) ",
  861.                s->last_lit, in_length, out_length,
  862.                100L - out_length*100L/in_length));
  863.         if (s->matches < s->last_lit/2 && out_length < in_length/2) return 1;
  864.     }
  865.     return (s->last_lit == s->lit_bufsize-1);
  866.     /* We avoid equality with lit_bufsize because of wraparound at 64K
  867.      * on 16 bit machines and because stored blocks are restricted to
  868.      * 64K-1 bytes.
  869.      */
  870. }
  871. /* ===========================================================================
  872.  * Send the block data compressed using the given Huffman trees
  873.  */
  874. local void compress_block(s, ltree, dtree)
  875.     deflate_state *s;
  876.     ct_data *ltree; /* literal tree */
  877.     ct_data *dtree; /* distance tree */
  878. {
  879.     unsigned dist;      /* distance of matched string */
  880.     int lc;             /* match length or unmatched char (if dist == 0) */
  881.     unsigned lx = 0;    /* running index in l_buf */
  882.     unsigned code;      /* the code to send */
  883.     int extra;          /* number of extra bits to send */
  884.     if (s->last_lit != 0) do {
  885.         dist = s->d_buf[lx];
  886.         lc = s->l_buf[lx++];
  887.         if (dist == 0) {
  888.             send_code(s, lc, ltree); /* send a literal byte */
  889.             Tracecv(isgraph(lc), (stderr," '%c' ", lc));
  890.         } else {
  891.             /* Here, lc is the match length - MIN_MATCH */
  892.             code = length_code[lc];
  893.             send_code(s, code+LITERALS+1, ltree); /* send the length code */
  894.             extra = extra_lbits[code];
  895.             if (extra != 0) {
  896.                 lc -= base_length[code];
  897.                 send_bits(s, lc, extra);       /* send the extra length bits */
  898.             }
  899.             dist--; /* dist is now the match distance - 1 */
  900.             code = d_code(dist);
  901.             Assert (code < D_CODES, "bad d_code");
  902.             send_code(s, code, dtree);       /* send the distance code */
  903.             extra = extra_dbits[code];
  904.             if (extra != 0) {
  905.                 dist -= base_dist[code];
  906.                 send_bits(s, dist, extra);   /* send the extra distance bits */
  907.             }
  908.         } /* literal or match pair ? */
  909.         /* Check that the overlay between pending_buf and d_buf+l_buf is ok: */
  910.         Assert((uInt)s->pending < s->lit_bufsize + 2*lx, "pendingBuf overflow");
  911.     } while (lx < s->last_lit);
  912.     send_code(s, END_BLOCK, ltree);
  913.     s->last_eob_len = ltree[END_BLOCK].Len;
  914. }
  915. /* ===========================================================================
  916.  * Set the data type to ASCII or BINARY, using a crude approximation:
  917.  * binary if more than 20% of the bytes are <= 6 or >= 128, ascii otherwise.
  918.  * IN assertion: the fields freq of dyn_ltree are set and the total of all
  919.  * frequencies does not exceed 64K (to fit in an int on 16 bit machines).
  920.  */
  921. local void set_data_type(s)
  922.     deflate_state *s;
  923. {
  924.     int n = 0;
  925.     unsigned ascii_freq = 0;
  926.     unsigned bin_freq = 0;
  927.     while (n < 7)        bin_freq += s->dyn_ltree[n++].Freq;
  928.     while (n < 128)    ascii_freq += s->dyn_ltree[n++].Freq;
  929.     while (n < LITERALS) bin_freq += s->dyn_ltree[n++].Freq;
  930.     s->data_type = (Byte)(bin_freq > (ascii_freq >> 2) ? Z_BINARY : Z_ASCII);
  931. }
  932. /* ===========================================================================
  933.  * Reverse the first len bits of a code, using straightforward code (a faster
  934.  * method would use a table)
  935.  * IN assertion: 1 <= len <= 15
  936.  */
  937. local unsigned bi_reverse(code, len)
  938.     unsigned code; /* the value to invert */
  939.     int len;       /* its bit length */
  940. {
  941.     register unsigned res = 0;
  942.     do {
  943.         res |= code & 1;
  944.         code >>= 1, res <<= 1;
  945.     } while (--len > 0);
  946.     return res >> 1;
  947. }
  948. /* ===========================================================================
  949.  * Flush the bit buffer, keeping at most 7 bits in it.
  950.  */
  951. local void bi_flush(s)
  952.     deflate_state *s;
  953. {
  954.     if (s->bi_valid == 16) {
  955.         put_short(s, s->bi_buf);
  956.         s->bi_buf = 0;
  957.         s->bi_valid = 0;
  958.     } else if (s->bi_valid >= 8) {
  959.         put_byte(s, (Byte)s->bi_buf);
  960.         s->bi_buf >>= 8;
  961.         s->bi_valid -= 8;
  962.     }
  963. }
  964. /* ===========================================================================
  965.  * Flush the bit buffer and align the output on a byte boundary
  966.  */
  967. local void bi_windup(s)
  968.     deflate_state *s;
  969. {
  970.     if (s->bi_valid > 8) {
  971.         put_short(s, s->bi_buf);
  972.     } else if (s->bi_valid > 0) {
  973.         put_byte(s, (Byte)s->bi_buf);
  974.     }
  975.     s->bi_buf = 0;
  976.     s->bi_valid = 0;
  977. #ifdef DEBUG
  978.     s->bits_sent = (s->bits_sent+7) & ~7;
  979. #endif
  980. }
  981. /* ===========================================================================
  982.  * Copy a stored block, storing first the length and its
  983.  * one's complement if requested.
  984.  */
  985. local void copy_block(s, buf, len, header)
  986.     deflate_state *s;
  987.     charf    *buf;    /* the input data */
  988.     unsigned len;     /* its length */
  989.     int      header;  /* true if block header must be written */
  990. {
  991.     bi_windup(s);        /* align on byte boundary */
  992.     s->last_eob_len = 8; /* enough lookahead for inflate */
  993.     if (header) {
  994.         put_short(s, (ush)len);   
  995.         put_short(s, (ush)~len);
  996. #ifdef DEBUG
  997.         s->bits_sent += 2*16;
  998. #endif
  999.     }
  1000. #ifdef DEBUG
  1001.     s->bits_sent += (ulg)len<<3;
  1002. #endif
  1003.     while (len--) {
  1004.         put_byte(s, *buf++);
  1005.     }
  1006. }