trees.c
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:43k
源码类别:

其他游戏

开发平台:

Visual C++

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