bszlib.pas
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:275k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1.   result := Z_STREAM_ERROR;  { Some dumb compilers complain without this }
  2. {$endif}
  3. end;
  4. function inflateSetDictionary(var z : z_stream;
  5.                               dictionary : pBytef; {const array of byte}
  6.                               dictLength : uInt) : int;
  7. var
  8.   length : uInt;
  9. begin
  10.   length := dictLength;
  11.   if (z.state = Z_NULL) or (z.state^.mode <> DICT0) then
  12.   begin
  13.     inflateSetDictionary := Z_STREAM_ERROR;
  14.     exit;
  15.   end;
  16.   if (adler32(Long(1), dictionary, dictLength) <> z.adler) then
  17.   begin
  18.     inflateSetDictionary := Z_DATA_ERROR;
  19.     exit;
  20.   end;
  21.   z.adler := Long(1);
  22.   if (length >= (uInt(1) shl z.state^.wbits)) then
  23.   begin
  24.     length := (1 shl z.state^.wbits)-1;
  25.     Inc( dictionary, dictLength - length);
  26.   end;
  27.   inflate_set_dictionary(z.state^.blocks^, dictionary^, length);
  28.   z.state^.mode := BLOCKS;
  29.   inflateSetDictionary := Z_OK;
  30. end;
  31. function inflateSync(var z : z_stream) : int;
  32. const
  33.   mark : packed array[0..3] of byte = (0, 0, $ff, $ff);
  34. var
  35.   n : uInt;       { number of bytes to look at }
  36.   p : pBytef;     { pointer to bytes }
  37.   m : uInt;       { number of marker bytes found in a row }
  38.   r, w : uLong;   { temporaries to save total_in and total_out }
  39. begin
  40.   { set up }
  41.   if (z.state = Z_NULL) then
  42.   begin
  43.     inflateSync := Z_STREAM_ERROR;
  44.     exit;
  45.   end;
  46.   if (z.state^.mode <> BAD) then
  47.   begin
  48.     z.state^.mode := BAD;
  49.     z.state^.sub.marker := 0;
  50.   end;
  51.   n := z.avail_in;
  52.   if (n = 0) then
  53.   begin
  54.     inflateSync := Z_BUF_ERROR;
  55.     exit;
  56.   end;
  57.   p := z.next_in;
  58.   m := z.state^.sub.marker;
  59.   { search }
  60.   while (n <> 0) and (m < 4) do
  61.   begin
  62.     if (p^ = mark[m]) then
  63.       Inc(m)
  64.     else
  65.       if (p^ <> 0) then
  66.         m := 0
  67.       else
  68.         m := 4 - m;
  69.     Inc(p);
  70.     Dec(n);
  71.   end;
  72.   { restore }
  73.   Inc(z.total_in, ptr2int(p) - ptr2int(z.next_in));
  74.   z.next_in := p;
  75.   z.avail_in := n;
  76.   z.state^.sub.marker := m;
  77.   { return no joy or set up to restart on a new block }
  78.   if (m <> 4) then
  79.   begin
  80.     inflateSync := Z_DATA_ERROR;
  81.     exit;
  82.   end;
  83.   r := z.total_in;
  84.   w := z.total_out;
  85.   inflateReset(z);
  86.   z.total_in := r;
  87.   z.total_out := w;
  88.   z.state^.mode := BLOCKS;
  89.   inflateSync := Z_OK;
  90. end;
  91. {
  92.   returns true if inflate is currently at the end of a block generated
  93.   by Z_SYNC_FLUSH or Z_FULL_FLUSH. This function is used by one PPP
  94.   implementation to provide an additional safety check. PPP uses Z_SYNC_FLUSH
  95.   but removes the length bytes of the resulting empty stored block. When
  96.   decompressing, PPP checks that at the end of input packet, inflate is
  97.   waiting for these length bytes.
  98. }
  99. function inflateSyncPoint(var z : z_stream) : int;
  100. begin
  101.   if (z.state = Z_NULL) or (z.state^.blocks = Z_NULL) then
  102.   begin
  103.     inflateSyncPoint := Z_STREAM_ERROR;
  104.     exit;
  105.   end;
  106.   inflateSyncPoint := inflate_blocks_sync_point(z.state^.blocks^);
  107. end;
  108. const
  109.  inflate_copyright = 'inflate 1.1.2 Copyright 1995-1998 Mark Adler';
  110. {
  111.   If you use the zlib library in a product, an acknowledgment is welcome
  112.   in the documentation of your product. If for some reason you cannot
  113.   include such an acknowledgment, I would appreciate that you keep this
  114.   copyright string in the executable of your product.
  115. }
  116. const
  117. { Tables for deflate from PKZIP's appnote.txt. }
  118.   cplens : Array [0..30] Of uInt  { Copy lengths for literal codes 257..285 }
  119.      = (3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31,
  120.         35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0);
  121.         { actually lengths - 2; also see note #13 above about 258 }
  122.   invalid_code = 112;
  123.   cplext : Array [0..30] Of uInt  { Extra bits for literal codes 257..285 }
  124.      = (0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2,
  125.         3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0, invalid_code, invalid_code);
  126.   cpdist : Array [0..29] Of uInt { Copy offsets for distance codes 0..29 }
  127.      = (1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193,
  128.         257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145,
  129.         8193, 12289, 16385, 24577);
  130.   cpdext : Array [0..29] Of uInt { Extra bits for distance codes }
  131.      = (0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6,
  132.         7, 7, 8, 8, 9, 9, 10, 10, 11, 11,
  133.         12, 12, 13, 13);
  134. {  Huffman code decoding is performed using a multi-level table lookup.
  135.    The fastest way to decode is to simply build a lookup table whose
  136.    size is determined by the longest code.  However, the time it takes
  137.    to build this table can also be a factor if the data being decoded
  138.    is not very long.  The most common codes are necessarily the
  139.    shortest codes, so those codes dominate the decoding time, and hence
  140.    the speed.  The idea is you can have a shorter table that decodes the
  141.    shorter, more probable codes, and then point to subsidiary tables for
  142.    the longer codes.  The time it costs to decode the longer codes is
  143.    then traded against the time it takes to make longer tables.
  144.    This results of this trade are in the variables lbits and dbits
  145.    below.  lbits is the number of bits the first level table for literal/
  146.    length codes can decode in one step, and dbits is the same thing for
  147.    the distance codes.  Subsequent tables are also less than or equal to
  148.    those sizes.  These values may be adjusted either when all of the
  149.    codes are shorter than that, in which case the longest code length in
  150.    bits is used, or when the shortest code is *longer* than the requested
  151.    table size, in which case the length of the shortest code in bits is
  152.    used.
  153.    There are two different values for the two tables, since they code a
  154.    different number of possibilities each.  The literal/length table
  155.    codes 286 possible values, or in a flat code, a little over eight
  156.    bits.  The distance table codes 30 possible values, or a little less
  157.    than five bits, flat.  The optimum values for speed end up being
  158.    about one bit more than those, so lbits is 8+1 and dbits is 5+1.
  159.    The optimum values may differ though from machine to machine, and
  160.    possibly even between compilers.  Your mileage may vary. }
  161. { If BMAX needs to be larger than 16, then h and x[] should be uLong. }
  162. const
  163.   BMAX = 15;         { maximum bit length of any code }
  164. {$DEFINE USE_PTR}
  165. function huft_build(
  166. var b : array of uIntf;    { code lengths in bits (all assumed <= BMAX) }
  167.     n : uInt;              { number of codes (assumed <= N_MAX) }
  168.     s : uInt;              { number of simple-valued codes (0..s-1) }
  169. const d : array of uIntf;  { list of base values for non-simple codes }
  170. { array of word }
  171. const e : array of uIntf;  { list of extra bits for non-simple codes }
  172. { array of byte }
  173.   t : ppInflate_huft;     { result: starting table }
  174. var m : uIntf;             { maximum lookup bits, returns actual }
  175. var hp : array of inflate_huft;  { space for trees }
  176. var hn : uInt;             { hufts used in space }
  177. var v : array of uIntf     { working area: values in order of bit length }
  178.    ) : int;
  179. { Given a list of code lengths and a maximum table size, make a set of
  180.   tables to decode that set of codes.  Return Z_OK on success, Z_BUF_ERROR
  181.   if the given code set is incomplete (the tables are still built in this
  182.   case), Z_DATA_ERROR if the input is invalid (an over-subscribed set of
  183.   lengths), or Z_MEM_ERROR if not enough memory. }
  184. Var
  185.   a : uInt;                     { counter for codes of length k }
  186.   c : Array [0..BMAX] Of uInt;  { bit length count table }
  187.   f : uInt;                     { i repeats in table every f entries }
  188.   g : int;                      { maximum code length }
  189.   h : int;                      { table level }
  190.   i : uInt;  {register}         { counter, current code }
  191.   j : uInt;  {register}         { counter }
  192.   k : Int;   {register}         { number of bits in current code }
  193.   l : int; { bits per table (returned in m) }
  194.   mask : uInt;                  { (1 shl w) - 1, to avoid cc -O bug on HP }
  195.   p : ^uIntf; {register}        { pointer into c[], b[], or v[] }
  196.   q : pInflate_huft;            { points to current table }
  197.   r : inflate_huft;             { table entry for structure assignment }
  198.   u : Array [0..BMAX-1] Of pInflate_huft; { table stack }
  199.   w : int;   {register}         { bits before this table = (l*h) }
  200.   x : Array [0..BMAX] Of uInt;  { bit offsets, then code stack }
  201.   {$IFDEF USE_PTR}
  202.   xp : puIntf;                  { pointer into x }
  203.   {$ELSE}
  204.   xp : uInt;
  205.   {$ENDIF}
  206.   y : int;                      { number of dummy codes added }
  207.   z : uInt;                     { number of entries in current table }
  208. Begin
  209.   { Generate counts for each bit length }
  210.   FillChar(c,SizeOf(c),0) ;     { clear c[] }
  211.   for i := 0 to n-1 do
  212.     Inc (c[b[i]]);              { assume all entries <= BMAX }
  213.   If (c[0] = n) Then            { null input--all zero length codes }
  214.   Begin
  215.     t^ := pInflate_huft(NIL);
  216.     m := 0 ;
  217.     huft_build := Z_OK ;
  218.     Exit;
  219.   End ;
  220.   { Find minimum and maximum length, bound [m] by those }
  221.   l := m;
  222.   for j:=1 To BMAX do
  223.     if (c[j] <> 0) then
  224.       break;
  225.   k := j ;                      { minimum code length }
  226.   if (uInt(l) < j) then
  227.     l := j;
  228.   for i := BMAX downto 1 do
  229.     if (c[i] <> 0) then
  230.       break ;
  231.   g := i ;                      { maximum code length }
  232.   if (uInt(l) > i) then
  233.      l := i;
  234.   m := l;
  235.   { Adjust last length count to fill out codes, if needed }
  236.   y := 1 shl j ;
  237.   while (j < i) do
  238.   begin
  239.     Dec(y, c[j]) ;
  240.     if (y < 0) then
  241.     begin
  242.       huft_build := Z_DATA_ERROR;   { bad input: more codes than bits }
  243.       exit;
  244.     end ;
  245.     Inc(j) ;
  246.     y := y shl 1
  247.   end;
  248.   Dec (y, c[i]) ;
  249.   if (y < 0) then
  250.   begin
  251.     huft_build := Z_DATA_ERROR;     { bad input: more codes than bits }
  252.     exit;
  253.   end;
  254.   Inc(c[i], y);
  255.   { Generate starting offsets into the value table FOR each length }
  256.   {$IFDEF USE_PTR}
  257.   x[1] := 0;
  258.   j := 0;
  259.   p := @c[1];
  260.   xp := @x[2];
  261.   dec(i);               { note that i = g from above }
  262.   WHILE (i > 0) DO
  263.   BEGIN
  264.     inc(j, p^);
  265.     xp^ := j;
  266.     inc(p);
  267.     inc(xp);
  268.     dec(i);
  269.   END;
  270.   {$ELSE}
  271.   x[1] := 0;
  272.   j := 0 ;
  273.   for i := 1 to g do
  274.   begin
  275.     x[i] := j;
  276.     Inc(j, c[i]);
  277.   end;
  278.   {$ENDIF}
  279.   { Make a table of values in order of bit lengths }
  280.   for i := 0 to n-1 do
  281.   begin
  282.     j := b[i];
  283.     if (j <> 0) then
  284.     begin
  285.       v[ x[j] ] := i;
  286.       Inc(x[j]);
  287.     end;
  288.   end;
  289.   n := x[g];                     { set n to length of v }
  290.   { Generate the Huffman codes and for each, make the table entries }
  291.   i := 0 ;
  292.   x[0] := 0 ;                   { first Huffman code is zero }
  293.   p := Addr(v) ;                { grab values in bit order }
  294.   h := -1 ;                     { no tables yet--level -1 }
  295.   w := -l ;                     { bits decoded = (l*h) }
  296.   u[0] := pInflate_huft(NIL);   { just to keep compilers happy }
  297.   q := pInflate_huft(NIL);      { ditto }
  298.   z := 0 ;                      { ditto }
  299.   { go through the bit lengths (k already is bits in shortest code) }
  300.   while (k <= g) Do
  301.   begin
  302.     a := c[k] ;
  303.     while (a<>0) Do
  304.     begin
  305.       Dec (a) ;
  306.       { here i is the Huffman code of length k bits for value p^ }
  307.       { make tables up to required level }
  308.       while (k > w + l) do
  309.       begin
  310.         Inc (h) ;
  311.         Inc (w, l);              { add bits already decoded }
  312.                                  { previous table always l bits }
  313.         { compute minimum size table less than or equal to l bits }
  314.         { table size upper limit }
  315.         z := g - w;
  316.         If (z > uInt(l)) Then
  317.           z := l;
  318.         { try a k-w bit table }
  319.         j := k - w;
  320.         f := 1 shl j;
  321.         if (f > a+1) Then        { too few codes for k-w bit table }
  322.         begin
  323.           Dec(f, a+1);           { deduct codes from patterns left }
  324.           {$IFDEF USE_PTR}
  325.           xp := Addr(c[k]);
  326.           if (j < z) then
  327.           begin
  328.             Inc(j);
  329.             while (j < z) do
  330.             begin                { try smaller tables up to z bits }
  331.               f := f shl 1;
  332.               Inc (xp) ;
  333.               If (f <= xp^) Then
  334.                 break;           { enough codes to use up j bits }
  335.               Dec(f, xp^);       { else deduct codes from patterns }
  336.               Inc(j);
  337.             end;
  338.           end;
  339.           {$ELSE}
  340.           xp := k;
  341.           if (j < z) then
  342.           begin
  343.             Inc (j) ;
  344.             While (j < z) Do
  345.             begin                 { try smaller tables up to z bits }
  346.               f := f * 2;
  347.               Inc (xp) ;
  348.               if (f <= c[xp]) then
  349.                 Break ;           { enough codes to use up j bits }
  350.               Dec (f, c[xp]) ;      { else deduct codes from patterns }
  351.               Inc (j);
  352.             end;
  353.           end;
  354.           {$ENDIF}
  355.         end;
  356.         z := 1 shl j;            { table entries for j-bit table }
  357.         { allocate new table }
  358.         if (hn + z > MANY) then { (note: doesn't matter for fixed) }
  359.         begin
  360.           huft_build := Z_MEM_ERROR;     { not enough memory }
  361.           exit;
  362.         end;
  363.         q := @hp[hn];
  364.         u[h] := q;
  365.         Inc(hn, z);
  366.         { connect to last table, if there is one }
  367.         if (h <> 0) then
  368.         begin
  369.           x[h] := i;             { save pattern for backing up }
  370.           r.bits := Byte(l);     { bits to dump before this table }
  371.           r.exop := Byte(j);     { bits in this table }
  372.           j := i shr (w - l);
  373.           {r.base := uInt( q - u[h-1] -j);}   { offset to this table }
  374.           r.base := (ptr2int(q) - ptr2int(u[h-1]) ) div sizeof(q^) - j;
  375.           huft_Ptr(u[h-1])^[j] := r;  { connect to last table }
  376.         end
  377.         else
  378.           t^ := q;               { first table is returned result }
  379.       end;
  380.       { set up table entry in r }
  381.       r.bits := Byte(k - w);
  382.       { C-code: if (p >= v + n) - see ZUTIL.PAS for comments }
  383.       if ptr2int(p)>=ptr2int(@(v[n])) then  { also works under DPMI ?? }
  384.         r.exop := 128 + 64                  { out of values--invalid code }
  385.       else
  386.         if (p^ < s) then
  387.         begin
  388.           if (p^ < 256) then     { 256 is end-of-block code }
  389.             r.exop := 0
  390.           Else
  391.             r.exop := 32 + 64;   { EOB_code; }
  392.           r.base := p^;          { simple code is just the value }
  393.           Inc(p);
  394.         end
  395.         Else
  396.         begin
  397.           r.exop := Byte(e[p^-s] + 16 + 64);  { non-simple--look up in lists }
  398.           r.base := d[p^-s];
  399.           Inc (p);
  400.         end ;
  401.       { fill code-like entries with r }
  402.       f := 1 shl (k - w);
  403.       j := i shr w;
  404.       while (j < z) do
  405.       begin
  406.         huft_Ptr(q)^[j] := r;
  407.         Inc(j, f);
  408.       end;
  409.       { backwards increment the k-bit code i }
  410.       j := 1 shl (k-1) ;
  411.       while (i and j) <> 0 do
  412.       begin
  413.         i := i xor j;         { bitwise exclusive or }
  414.         j := j shr 1
  415.       end ;
  416.       i := i xor j;
  417.       { backup over finished tables }
  418.       mask := (1 shl w) - 1;   { needed on HP, cc -O bug }
  419.       while ((i and mask) <> x[h]) do
  420.       begin
  421.         Dec(h);                { don't need to update q }
  422.         Dec(w, l);
  423.         mask := (1 shl w) - 1;
  424.       end;
  425.     end;
  426.     Inc(k);
  427.   end;
  428.   { Return Z_BUF_ERROR if we were given an incomplete table }
  429.   if (y <> 0) And (g <> 1) then
  430.     huft_build := Z_BUF_ERROR
  431.   else
  432.     huft_build := Z_OK;
  433. end; { huft_build}
  434. function inflate_trees_bits(
  435.   var c : array of uIntf;  { 19 code lengths }
  436.   var bb : uIntf;          { bits tree desired/actual depth }
  437.   var tb : pinflate_huft;  { bits tree result }
  438.   var hp : array of Inflate_huft;      { space for trees }
  439.   var z : z_stream         { for messages }
  440.     ) : int;
  441. var
  442.   r : int;
  443.   hn : uInt;          { hufts used in space }
  444.   v : PuIntArray;     { work area for huft_build }
  445. begin
  446.   hn := 0;
  447.   v := PuIntArray( ZALLOC(z, 19, sizeof(uInt)) );
  448.   if (v = Z_NULL) then
  449.   begin
  450.     inflate_trees_bits := Z_MEM_ERROR;
  451.     exit;
  452.   end;
  453.   r := huft_build(c, 19, 19, cplens, cplext,
  454.                              {puIntf(Z_NULL), puIntf(Z_NULL),}
  455.                   @tb, bb, hp, hn, v^);
  456.   if (r = Z_DATA_ERROR) then
  457.     z.msg := 'oversubscribed dynamic bit lengths tree'
  458.   else
  459.     if (r = Z_BUF_ERROR) or (bb = 0) then
  460.     begin
  461.       z.msg := 'incomplete dynamic bit lengths tree';
  462.       r := Z_DATA_ERROR;
  463.     end;
  464.   ZFREE(z, v);
  465.   inflate_trees_bits := r;
  466. end;
  467. function inflate_trees_dynamic(
  468.     nl : uInt;                    { number of literal/length codes }
  469.     nd : uInt;                    { number of distance codes }
  470.     var c : Array of uIntf;           { that many (total) code lengths }
  471.     var bl : uIntf;          { literal desired/actual bit depth }
  472.     var bd : uIntf;          { distance desired/actual bit depth }
  473. var tl : pInflate_huft;           { literal/length tree result }
  474. var td : pInflate_huft;           { distance tree result }
  475. var hp : array of Inflate_huft;   { space for trees }
  476. var z : z_stream                  { for messages }
  477.      ) : int;
  478. var
  479.   r : int;
  480.   hn : uInt;          { hufts used in space }
  481.   v : PuIntArray;     { work area for huft_build }
  482. begin
  483.   hn := 0;
  484.   { allocate work area }
  485.   v := PuIntArray( ZALLOC(z, 288, sizeof(uInt)) );
  486.   if (v = Z_NULL) then
  487.   begin
  488.     inflate_trees_dynamic := Z_MEM_ERROR;
  489.     exit;
  490.   end;
  491.   { build literal/length tree }
  492.   r := huft_build(c, nl, 257, cplens, cplext, @tl, bl, hp, hn, v^);
  493.   if (r <> Z_OK) or (bl = 0) then
  494.   begin
  495.     if (r = Z_DATA_ERROR) then
  496.       z.msg := 'oversubscribed literal/length tree'
  497.     else
  498.       if (r <> Z_MEM_ERROR) then
  499.       begin
  500.         z.msg := 'incomplete literal/length tree';
  501.         r := Z_DATA_ERROR;
  502.       end;
  503.     ZFREE(z, v);
  504.     inflate_trees_dynamic := r;
  505.     exit;
  506.   end;
  507.   { build distance tree }
  508.   r := huft_build(puIntArray(@c[nl])^, nd, 0,
  509.                   cpdist, cpdext, @td, bd, hp, hn, v^);
  510.   if (r <> Z_OK) or ((bd = 0) and (nl > 257)) then
  511.   begin
  512.     if (r = Z_DATA_ERROR) then
  513.       z.msg := 'oversubscribed literal/length tree'
  514.     else
  515.       if (r = Z_BUF_ERROR) then
  516.       begin
  517. {$ifdef PKZIP_BUG_WORKAROUND}
  518.         r := Z_OK;
  519.       end;
  520. {$else}
  521.         z.msg := 'incomplete literal/length tree';
  522.         r := Z_DATA_ERROR;
  523.       end
  524.       else
  525.         if (r <> Z_MEM_ERROR) then
  526.         begin
  527.           z.msg := 'empty distance tree with lengths';
  528.           r := Z_DATA_ERROR;
  529.         end;
  530.     ZFREE(z, v);
  531.     inflate_trees_dynamic := r;
  532.     exit;
  533. {$endif}
  534.   end;
  535.   { done }
  536.   ZFREE(z, v);
  537.   inflate_trees_dynamic := Z_OK;
  538. end;
  539. {$UNDEF BUILDFIXED}
  540. { build fixed tables only once--keep them here }
  541. {$IFNDEF BUILDFIXED}
  542. { locals }
  543. const
  544. {$WRITEABLECONST ON}
  545.   fixed_built : Boolean = false;
  546. {$WRITEABLECONST OFF}
  547.   FIXEDH = 544;      { number of hufts used by fixed tables }
  548. var
  549.   fixed_mem : array[0..FIXEDH-1] of inflate_huft;
  550.   fixed_bl : uInt;
  551.   fixed_bd : uInt;
  552.   fixed_tl : pInflate_huft;
  553.   fixed_td : pInflate_huft;
  554. {$ELSE}
  555. { inffixed.h -- table for decoding fixed codes }
  556. {local}
  557. const
  558.   fixed_bl = uInt(9);
  559. {local}
  560. const
  561.   fixed_bd = uInt(5);
  562. {local}
  563. const
  564.   fixed_tl : array [0..288-1] of inflate_huft = (
  565.     Exop,             { number of extra bits or operation }
  566.     bits : Byte;      { number of bits in this code or subcode }
  567.     {pad : uInt;}       { pad structure to a power of 2 (4 bytes for }
  568.                       {  16-bit, 8 bytes for 32-bit int's) }
  569.     base : uInt;      { literal, length base, or distance base }
  570.                       { or table offset }
  571.     ((96,7),256), ((0,8),80), ((0,8),16), ((84,8),115), ((82,7),31),
  572.     ((0,8),112), ((0,8),48), ((0,9),192), ((80,7),10), ((0,8),96),
  573.     ((0,8),32), ((0,9),160), ((0,8),0), ((0,8),128), ((0,8),64),
  574.     ((0,9),224), ((80,7),6), ((0,8),88), ((0,8),24), ((0,9),144),
  575.     ((83,7),59), ((0,8),120), ((0,8),56), ((0,9),208), ((81,7),17),
  576.     ((0,8),104), ((0,8),40), ((0,9),176), ((0,8),8), ((0,8),136),
  577.     ((0,8),72), ((0,9),240), ((80,7),4), ((0,8),84), ((0,8),20),
  578.     ((85,8),227), ((83,7),43), ((0,8),116), ((0,8),52), ((0,9),200),
  579.     ((81,7),13), ((0,8),100), ((0,8),36), ((0,9),168), ((0,8),4),
  580.     ((0,8),132), ((0,8),68), ((0,9),232), ((80,7),8), ((0,8),92),
  581.     ((0,8),28), ((0,9),152), ((84,7),83), ((0,8),124), ((0,8),60),
  582.     ((0,9),216), ((82,7),23), ((0,8),108), ((0,8),44), ((0,9),184),
  583.     ((0,8),12), ((0,8),140), ((0,8),76), ((0,9),248), ((80,7),3),
  584.     ((0,8),82), ((0,8),18), ((85,8),163), ((83,7),35), ((0,8),114),
  585.     ((0,8),50), ((0,9),196), ((81,7),11), ((0,8),98), ((0,8),34),
  586.     ((0,9),164), ((0,8),2), ((0,8),130), ((0,8),66), ((0,9),228),
  587.     ((80,7),7), ((0,8),90), ((0,8),26), ((0,9),148), ((84,7),67),
  588.     ((0,8),122), ((0,8),58), ((0,9),212), ((82,7),19), ((0,8),106),
  589.     ((0,8),42), ((0,9),180), ((0,8),10), ((0,8),138), ((0,8),74),
  590.     ((0,9),244), ((80,7),5), ((0,8),86), ((0,8),22), ((192,8),0),
  591.     ((83,7),51), ((0,8),118), ((0,8),54), ((0,9),204), ((81,7),15),
  592.     ((0,8),102), ((0,8),38), ((0,9),172), ((0,8),6), ((0,8),134),
  593.     ((0,8),70), ((0,9),236), ((80,7),9), ((0,8),94), ((0,8),30),
  594.     ((0,9),156), ((84,7),99), ((0,8),126), ((0,8),62), ((0,9),220),
  595.     ((82,7),27), ((0,8),110), ((0,8),46), ((0,9),188), ((0,8),14),
  596.     ((0,8),142), ((0,8),78), ((0,9),252), ((96,7),256), ((0,8),81),
  597.     ((0,8),17), ((85,8),131), ((82,7),31), ((0,8),113), ((0,8),49),
  598.     ((0,9),194), ((80,7),10), ((0,8),97), ((0,8),33), ((0,9),162),
  599.     ((0,8),1), ((0,8),129), ((0,8),65), ((0,9),226), ((80,7),6),
  600.     ((0,8),89), ((0,8),25), ((0,9),146), ((83,7),59), ((0,8),121),
  601.     ((0,8),57), ((0,9),210), ((81,7),17), ((0,8),105), ((0,8),41),
  602.     ((0,9),178), ((0,8),9), ((0,8),137), ((0,8),73), ((0,9),242),
  603.     ((80,7),4), ((0,8),85), ((0,8),21), ((80,8),258), ((83,7),43),
  604.     ((0,8),117), ((0,8),53), ((0,9),202), ((81,7),13), ((0,8),101),
  605.     ((0,8),37), ((0,9),170), ((0,8),5), ((0,8),133), ((0,8),69),
  606.     ((0,9),234), ((80,7),8), ((0,8),93), ((0,8),29), ((0,9),154),
  607.     ((84,7),83), ((0,8),125), ((0,8),61), ((0,9),218), ((82,7),23),
  608.     ((0,8),109), ((0,8),45), ((0,9),186), ((0,8),13), ((0,8),141),
  609.     ((0,8),77), ((0,9),250), ((80,7),3), ((0,8),83), ((0,8),19),
  610.     ((85,8),195), ((83,7),35), ((0,8),115), ((0,8),51), ((0,9),198),
  611.     ((81,7),11), ((0,8),99), ((0,8),35), ((0,9),166), ((0,8),3),
  612.     ((0,8),131), ((0,8),67), ((0,9),230), ((80,7),7), ((0,8),91),
  613.     ((0,8),27), ((0,9),150), ((84,7),67), ((0,8),123), ((0,8),59),
  614.     ((0,9),214), ((82,7),19), ((0,8),107), ((0,8),43), ((0,9),182),
  615.     ((0,8),11), ((0,8),139), ((0,8),75), ((0,9),246), ((80,7),5),
  616.     ((0,8),87), ((0,8),23), ((192,8),0), ((83,7),51), ((0,8),119),
  617.     ((0,8),55), ((0,9),206), ((81,7),15), ((0,8),103), ((0,8),39),
  618.     ((0,9),174), ((0,8),7), ((0,8),135), ((0,8),71), ((0,9),238),
  619.     ((80,7),9), ((0,8),95), ((0,8),31), ((0,9),158), ((84,7),99),
  620.     ((0,8),127), ((0,8),63), ((0,9),222), ((82,7),27), ((0,8),111),
  621.     ((0,8),47), ((0,9),190), ((0,8),15), ((0,8),143), ((0,8),79),
  622.     ((0,9),254), ((96,7),256), ((0,8),80), ((0,8),16), ((84,8),115),
  623.     ((82,7),31), ((0,8),112), ((0,8),48), ((0,9),193), ((80,7),10),
  624.     ((0,8),96), ((0,8),32), ((0,9),161), ((0,8),0), ((0,8),128),
  625.     ((0,8),64), ((0,9),225), ((80,7),6), ((0,8),88), ((0,8),24),
  626.     ((0,9),145), ((83,7),59), ((0,8),120), ((0,8),56), ((0,9),209),
  627.     ((81,7),17), ((0,8),104), ((0,8),40), ((0,9),177), ((0,8),8),
  628.     ((0,8),136), ((0,8),72), ((0,9),241), ((80,7),4), ((0,8),84),
  629.     ((0,8),20), ((85,8),227), ((83,7),43), ((0,8),116), ((0,8),52),
  630.     ((0,9),201), ((81,7),13), ((0,8),100), ((0,8),36), ((0,9),169),
  631.     ((0,8),4), ((0,8),132), ((0,8),68), ((0,9),233), ((80,7),8),
  632.     ((0,8),92), ((0,8),28), ((0,9),153), ((84,7),83), ((0,8),124),
  633.     ((0,8),60), ((0,9),217), ((82,7),23), ((0,8),108), ((0,8),44),
  634.     ((0,9),185), ((0,8),12), ((0,8),140), ((0,8),76), ((0,9),249),
  635.     ((80,7),3), ((0,8),82), ((0,8),18), ((85,8),163), ((83,7),35),
  636.     ((0,8),114), ((0,8),50), ((0,9),197), ((81,7),11), ((0,8),98),
  637.     ((0,8),34), ((0,9),165), ((0,8),2), ((0,8),130), ((0,8),66),
  638.     ((0,9),229), ((80,7),7), ((0,8),90), ((0,8),26), ((0,9),149),
  639.     ((84,7),67), ((0,8),122), ((0,8),58), ((0,9),213), ((82,7),19),
  640.     ((0,8),106), ((0,8),42), ((0,9),181), ((0,8),10), ((0,8),138),
  641.     ((0,8),74), ((0,9),245), ((80,7),5), ((0,8),86), ((0,8),22),
  642.     ((192,8),0), ((83,7),51), ((0,8),118), ((0,8),54), ((0,9),205),
  643.     ((81,7),15), ((0,8),102), ((0,8),38), ((0,9),173), ((0,8),6),
  644.     ((0,8),134), ((0,8),70), ((0,9),237), ((80,7),9), ((0,8),94),
  645.     ((0,8),30), ((0,9),157), ((84,7),99), ((0,8),126), ((0,8),62),
  646.     ((0,9),221), ((82,7),27), ((0,8),110), ((0,8),46), ((0,9),189),
  647.     ((0,8),14), ((0,8),142), ((0,8),78), ((0,9),253), ((96,7),256),
  648.     ((0,8),81), ((0,8),17), ((85,8),131), ((82,7),31), ((0,8),113),
  649.     ((0,8),49), ((0,9),195), ((80,7),10), ((0,8),97), ((0,8),33),
  650.     ((0,9),163), ((0,8),1), ((0,8),129), ((0,8),65), ((0,9),227),
  651.     ((80,7),6), ((0,8),89), ((0,8),25), ((0,9),147), ((83,7),59),
  652.     ((0,8),121), ((0,8),57), ((0,9),211), ((81,7),17), ((0,8),105),
  653.     ((0,8),41), ((0,9),179), ((0,8),9), ((0,8),137), ((0,8),73),
  654.     ((0,9),243), ((80,7),4), ((0,8),85), ((0,8),21), ((80,8),258),
  655.     ((83,7),43), ((0,8),117), ((0,8),53), ((0,9),203), ((81,7),13),
  656.     ((0,8),101), ((0,8),37), ((0,9),171), ((0,8),5), ((0,8),133),
  657.     ((0,8),69), ((0,9),235), ((80,7),8), ((0,8),93), ((0,8),29),
  658.     ((0,9),155), ((84,7),83), ((0,8),125), ((0,8),61), ((0,9),219),
  659.     ((82,7),23), ((0,8),109), ((0,8),45), ((0,9),187), ((0,8),13),
  660.     ((0,8),141), ((0,8),77), ((0,9),251), ((80,7),3), ((0,8),83),
  661.     ((0,8),19), ((85,8),195), ((83,7),35), ((0,8),115), ((0,8),51),
  662.     ((0,9),199), ((81,7),11), ((0,8),99), ((0,8),35), ((0,9),167),
  663.     ((0,8),3), ((0,8),131), ((0,8),67), ((0,9),231), ((80,7),7),
  664.     ((0,8),91), ((0,8),27), ((0,9),151), ((84,7),67), ((0,8),123),
  665.     ((0,8),59), ((0,9),215), ((82,7),19), ((0,8),107), ((0,8),43),
  666.     ((0,9),183), ((0,8),11), ((0,8),139), ((0,8),75), ((0,9),247),
  667.     ((80,7),5), ((0,8),87), ((0,8),23), ((192,8),0), ((83,7),51),
  668.     ((0,8),119), ((0,8),55), ((0,9),207), ((81,7),15), ((0,8),103),
  669.     ((0,8),39), ((0,9),175), ((0,8),7), ((0,8),135), ((0,8),71),
  670.     ((0,9),239), ((80,7),9), ((0,8),95), ((0,8),31), ((0,9),159),
  671.     ((84,7),99), ((0,8),127), ((0,8),63), ((0,9),223), ((82,7),27),
  672.     ((0,8),111), ((0,8),47), ((0,9),191), ((0,8),15), ((0,8),143),
  673.     ((0,8),79), ((0,9),255)
  674.   );
  675. {local}
  676. const
  677.   fixed_td : array[0..32-1] of inflate_huft = (
  678. (Exop:80;bits:5;base:1),      (Exop:87;bits:5;base:257),   (Exop:83;bits:5;base:17),
  679. (Exop:91;bits:5;base:4097),   (Exop:81;bits:5;base),       (Exop:89;bits:5;base:1025),
  680. (Exop:85;bits:5;base:65),     (Exop:93;bits:5;base:16385), (Exop:80;bits:5;base:3),
  681. (Exop:88;bits:5;base:513),    (Exop:84;bits:5;base:33),    (Exop:92;bits:5;base:8193),
  682. (Exop:82;bits:5;base:9),      (Exop:90;bits:5;base:2049),  (Exop:86;bits:5;base:129),
  683. (Exop:192;bits:5;base:24577), (Exop:80;bits:5;base:2),     (Exop:87;bits:5;base:385),
  684. (Exop:83;bits:5;base:25),     (Exop:91;bits:5;base:6145),  (Exop:81;bits:5;base:7),
  685. (Exop:89;bits:5;base:1537),   (Exop:85;bits:5;base:97),    (Exop:93;bits:5;base:24577),
  686. (Exop:80;bits:5;base:4),      (Exop:88;bits:5;base:769),   (Exop:84;bits:5;base:49),
  687. (Exop:92;bits:5;base:12289),  (Exop:82;bits:5;base:13),    (Exop:90;bits:5;base:3073),
  688. (Exop:86;bits:5;base:193),    (Exop:192;bits:5;base:24577)
  689.   );
  690. {$ENDIF}
  691. function inflate_trees_fixed(
  692. var bl : uIntf;              { literal desired/actual bit depth }
  693. var bd : uIntf;              { distance desired/actual bit depth }
  694. var tl : pInflate_huft;      { literal/length tree result }
  695. var td : pInflate_huft;      { distance tree result }
  696. var  z : z_stream            { for memory allocation }
  697.       ) : int;
  698. type
  699.   pFixed_table = ^fixed_table;
  700.   fixed_table = array[0..288-1] of uIntf;
  701. var
  702.   k : int;                   { temporary variable }
  703.   c : pFixed_table;          { length list for huft_build }
  704.   v : PuIntArray;            { work area for huft_build }
  705. var
  706.   f : uInt;                  { number of hufts used in fixed_mem }
  707. begin
  708.   { build fixed tables if not already (multiple overlapped executions ok) }
  709.   if not fixed_built then
  710.   begin
  711.     f := 0;
  712.     { allocate memory }
  713.     c := pFixed_table( ZALLOC(z, 288, sizeof(uInt)) );
  714.     if (c = Z_NULL) then
  715.     begin
  716.       inflate_trees_fixed := Z_MEM_ERROR;
  717.       exit;
  718.     end;
  719.     v := PuIntArray( ZALLOC(z, 288, sizeof(uInt)) );
  720.     if (v = Z_NULL) then
  721.     begin
  722.       ZFREE(z, c);
  723.       inflate_trees_fixed := Z_MEM_ERROR;
  724.       exit;
  725.     end;
  726.     { literal table }
  727.     for k := 0 to Pred(144) do
  728.       c^[k] := 8;
  729.     for k := 144 to Pred(256) do
  730.       c^[k] := 9;
  731.     for k := 256 to Pred(280) do
  732.       c^[k] := 7;
  733.     for k := 280 to Pred(288) do
  734.       c^[k] := 8;
  735.     fixed_bl := 9;
  736.     huft_build(c^, 288, 257, cplens, cplext, @fixed_tl, fixed_bl,
  737.                fixed_mem, f, v^);
  738.     { distance table }
  739.     for k := 0 to Pred(30) do
  740.       c^[k] := 5;
  741.     fixed_bd := 5;
  742.     huft_build(c^, 30, 0, cpdist, cpdext, @fixed_td, fixed_bd,
  743.                fixed_mem, f, v^);
  744.     { done }
  745.     ZFREE(z, v);
  746.     ZFREE(z, c);
  747.     fixed_built := True;
  748.   end;
  749.   bl := fixed_bl;
  750.   bd := fixed_bd;
  751.   tl := fixed_tl;
  752.   td := fixed_td;
  753.   inflate_trees_fixed := Z_OK;
  754. end; { inflate_trees_fixed }
  755. { macros for bit input with no checking and for returning unused bytes }
  756. procedure GRABBITS(j : int);
  757. begin
  758.   {while (k < j) do
  759.   begin
  760.     Dec(z^.avail_in);
  761.     Inc(z^.total_in);
  762.     b := b or (uLong(z^.next_in^) shl k);
  763.     Inc(z^.next_in);
  764.     Inc(k, 8);
  765.   end;}
  766. end;
  767. procedure DUMPBITS(j : int);
  768. begin
  769.   {b := b shr j;
  770.   Dec(k, j);}
  771. end;
  772. procedure NEEDBITS(j : int);
  773. begin
  774.  (*
  775.           while (k < j) do
  776.           begin
  777.             {NEEDBYTE;}
  778.             if (n <> 0) then
  779.               r :=Z_OK
  780.             else
  781.             begin
  782.               {UPDATE}
  783.               s.bitb := b;
  784.               s.bitk := k;
  785.               z.avail_in := n;
  786.               Inc(z.total_in, LongInt(p)-LongInt(z.next_in));
  787.               z.next_in := p;
  788.               s.write := q;
  789.               result := inflate_flush(s,z,r);
  790.               exit;
  791.             end;
  792.             Dec(n);
  793.             b := b or (uLong(p^) shl k);
  794.             Inc(p);
  795.             Inc(k, 8);
  796.           end;
  797.  *)
  798. end;
  799. procedure NEEDOUT;
  800. begin
  801.  (*
  802.   if (m = 0) then
  803.   begin
  804.     {WRAP}
  805.     if (q = s.zend) and (s.read <> s.window) then
  806.     begin
  807.       q := s.window;
  808.       if LongInt(q) < LongInt(s.read) then
  809.         m := uInt(LongInt(s.read)-LongInt(q)-1)
  810.       else
  811.         m := uInt(LongInt(s.zend)-LongInt(q));
  812.     end;
  813.     if (m = 0) then
  814.     begin
  815.       {FLUSH}
  816.       s.write := q;
  817.       r := inflate_flush(s,z,r);
  818.       q := s.write;
  819.       if LongInt(q) < LongInt(s.read) then
  820.         m := uInt(LongInt(s.read)-LongInt(q)-1)
  821.       else
  822.         m := uInt(LongInt(s.zend)-LongInt(q));
  823.       {WRAP}
  824.       if (q = s.zend) and (s.read <> s.window) then
  825.       begin
  826.         q := s.window;
  827.         if LongInt(q) < LongInt(s.read) then
  828.           m := uInt(LongInt(s.read)-LongInt(q)-1)
  829.         else
  830.           m := uInt(LongInt(s.zend)-LongInt(q));
  831.       end;
  832.       if (m = 0) then
  833.       begin
  834.         {UPDATE}
  835.         s.bitb := b;
  836.         s.bitk := k;
  837.         z.avail_in := n;
  838.         Inc(z.total_in, LongInt(p)-LongInt(z.next_in));
  839.         z.next_in := p;
  840.         s.write := q;
  841.         result := inflate_flush(s,z,r);
  842.         exit;
  843.       end;
  844.     end;
  845.   end;
  846.   r := Z_OK;
  847.  *)
  848. end;
  849. { copy as much as possible from the sliding window to the output area }
  850. function inflate_flush(var s : inflate_blocks_state;
  851.                        var z : z_stream;
  852.                        r : int) : int;
  853. var
  854.   n : uInt;
  855.   p : pBytef;
  856.   q : pBytef;
  857. begin
  858.   { local copies of source and destination pointers }
  859.   p := z.next_out;
  860.   q := s.read;
  861.   { compute number of bytes to copy as far as end of window }
  862.   if ptr2int(q) <= ptr2int(s.write) then
  863.     n := uInt(ptr2int(s.write) - ptr2int(q))
  864.   else
  865.     n := uInt(ptr2int(s.zend) - ptr2int(q));
  866.   if (n > z.avail_out) then
  867.     n := z.avail_out;
  868.   if (n <> 0) and (r = Z_BUF_ERROR) then
  869.     r := Z_OK;
  870.   { update counters }
  871.   Dec(z.avail_out, n);
  872.   Inc(z.total_out, n);
  873.   { update check information }
  874.   if Assigned(s.checkfn) then
  875.   begin
  876.     s.check := s.checkfn(s.check, q, n);
  877.     z.adler := s.check;
  878.   end;
  879.   { copy as far as end of window }
  880.   zmemcpy(p, q, n);
  881.   Inc(p, n);
  882.   Inc(q, n);
  883.   { see if more to copy at beginning of window }
  884.   if (q = s.zend) then
  885.   begin
  886.     { wrap pointers }
  887.     q := s.window;
  888.     if (s.write = s.zend) then
  889.       s.write := s.window;
  890.     { compute bytes to copy }
  891.     n := uInt(ptr2int(s.write) - ptr2int(q));
  892.     if (n > z.avail_out) then
  893.       n := z.avail_out;
  894.     if (n <> 0) and (r = Z_BUF_ERROR) then
  895.       r := Z_OK;
  896.     { update counters }
  897.     Dec( z.avail_out, n);
  898.     Inc( z.total_out, n);
  899.     { update check information }
  900.     if Assigned(s.checkfn) then
  901.     begin
  902.       s.check := s.checkfn(s.check, q, n);
  903.       z.adler := s.check;
  904.     end;
  905.     { copy }
  906.     zmemcpy(p, q, n);
  907.     Inc(p, n);
  908.     Inc(q, n);
  909.   end;
  910.   { update pointers }
  911.   z.next_out := p;
  912.   s.read := q;
  913.   { done }
  914.   inflate_flush := r;
  915. end;
  916. { #define GEN_TREES_H }
  917. {$ifndef GEN_TREES_H}
  918. { header created automatically with -DGEN_TREES_H }
  919. const
  920.   DIST_CODE_LEN = 512; { see definition of array dist_code below }
  921. { The static literal tree. Since the bit lengths are imposed, there is no
  922.   need for the L_CODES extra codes used during heap construction. However
  923.   The codes 286 and 287 are needed to build a canonical tree (see _tr_init
  924.   below). }
  925. type
  926.    tstatic_ltree = ARRAY[0..L_CODES+2-1] of ct_data;
  927. const
  928.   static_ltree : tstatic_ltree = (
  929. { fc:(freq, code) dl:(dad,len) }
  930. (fc:(freq: 12);dl:(len: 8)), (fc:(freq:140);dl:(len: 8)), (fc:(freq: 76);dl:(len: 8)),
  931. (fc:(freq:204);dl:(len: 8)), (fc:(freq: 44);dl:(len: 8)), (fc:(freq:172);dl:(len: 8)),
  932. (fc:(freq:108);dl:(len: 8)), (fc:(freq:236);dl:(len: 8)), (fc:(freq: 28);dl:(len: 8)),
  933. (fc:(freq:156);dl:(len: 8)), (fc:(freq: 92);dl:(len: 8)), (fc:(freq:220);dl:(len: 8)),
  934. (fc:(freq: 60);dl:(len: 8)), (fc:(freq:188);dl:(len: 8)), (fc:(freq:124);dl:(len: 8)),
  935. (fc:(freq:252);dl:(len: 8)), (fc:(freq:  2);dl:(len: 8)), (fc:(freq:130);dl:(len: 8)),
  936. (fc:(freq: 66);dl:(len: 8)), (fc:(freq:194);dl:(len: 8)), (fc:(freq: 34);dl:(len: 8)),
  937. (fc:(freq:162);dl:(len: 8)), (fc:(freq: 98);dl:(len: 8)), (fc:(freq:226);dl:(len: 8)),
  938. (fc:(freq: 18);dl:(len: 8)), (fc:(freq:146);dl:(len: 8)), (fc:(freq: 82);dl:(len: 8)),
  939. (fc:(freq:210);dl:(len: 8)), (fc:(freq: 50);dl:(len: 8)), (fc:(freq:178);dl:(len: 8)),
  940. (fc:(freq:114);dl:(len: 8)), (fc:(freq:242);dl:(len: 8)), (fc:(freq: 10);dl:(len: 8)),
  941. (fc:(freq:138);dl:(len: 8)), (fc:(freq: 74);dl:(len: 8)), (fc:(freq:202);dl:(len: 8)),
  942. (fc:(freq: 42);dl:(len: 8)), (fc:(freq:170);dl:(len: 8)), (fc:(freq:106);dl:(len: 8)),
  943. (fc:(freq:234);dl:(len: 8)), (fc:(freq: 26);dl:(len: 8)), (fc:(freq:154);dl:(len: 8)),
  944. (fc:(freq: 90);dl:(len: 8)), (fc:(freq:218);dl:(len: 8)), (fc:(freq: 58);dl:(len: 8)),
  945. (fc:(freq:186);dl:(len: 8)), (fc:(freq:122);dl:(len: 8)), (fc:(freq:250);dl:(len: 8)),
  946. (fc:(freq:  6);dl:(len: 8)), (fc:(freq:134);dl:(len: 8)), (fc:(freq: 70);dl:(len: 8)),
  947. (fc:(freq:198);dl:(len: 8)), (fc:(freq: 38);dl:(len: 8)), (fc:(freq:166);dl:(len: 8)),
  948. (fc:(freq:102);dl:(len: 8)), (fc:(freq:230);dl:(len: 8)), (fc:(freq: 22);dl:(len: 8)),
  949. (fc:(freq:150);dl:(len: 8)), (fc:(freq: 86);dl:(len: 8)), (fc:(freq:214);dl:(len: 8)),
  950. (fc:(freq: 54);dl:(len: 8)), (fc:(freq:182);dl:(len: 8)), (fc:(freq:118);dl:(len: 8)),
  951. (fc:(freq:246);dl:(len: 8)), (fc:(freq: 14);dl:(len: 8)), (fc:(freq:142);dl:(len: 8)),
  952. (fc:(freq: 78);dl:(len: 8)), (fc:(freq:206);dl:(len: 8)), (fc:(freq: 46);dl:(len: 8)),
  953. (fc:(freq:174);dl:(len: 8)), (fc:(freq:110);dl:(len: 8)), (fc:(freq:238);dl:(len: 8)),
  954. (fc:(freq: 30);dl:(len: 8)), (fc:(freq:158);dl:(len: 8)), (fc:(freq: 94);dl:(len: 8)),
  955. (fc:(freq:222);dl:(len: 8)), (fc:(freq: 62);dl:(len: 8)), (fc:(freq:190);dl:(len: 8)),
  956. (fc:(freq:126);dl:(len: 8)), (fc:(freq:254);dl:(len: 8)), (fc:(freq:  1);dl:(len: 8)),
  957. (fc:(freq:129);dl:(len: 8)), (fc:(freq: 65);dl:(len: 8)), (fc:(freq:193);dl:(len: 8)),
  958. (fc:(freq: 33);dl:(len: 8)), (fc:(freq:161);dl:(len: 8)), (fc:(freq: 97);dl:(len: 8)),
  959. (fc:(freq:225);dl:(len: 8)), (fc:(freq: 17);dl:(len: 8)), (fc:(freq:145);dl:(len: 8)),
  960. (fc:(freq: 81);dl:(len: 8)), (fc:(freq:209);dl:(len: 8)), (fc:(freq: 49);dl:(len: 8)),
  961. (fc:(freq:177);dl:(len: 8)), (fc:(freq:113);dl:(len: 8)), (fc:(freq:241);dl:(len: 8)),
  962. (fc:(freq:  9);dl:(len: 8)), (fc:(freq:137);dl:(len: 8)), (fc:(freq: 73);dl:(len: 8)),
  963. (fc:(freq:201);dl:(len: 8)), (fc:(freq: 41);dl:(len: 8)), (fc:(freq:169);dl:(len: 8)),
  964. (fc:(freq:105);dl:(len: 8)), (fc:(freq:233);dl:(len: 8)), (fc:(freq: 25);dl:(len: 8)),
  965. (fc:(freq:153);dl:(len: 8)), (fc:(freq: 89);dl:(len: 8)), (fc:(freq:217);dl:(len: 8)),
  966. (fc:(freq: 57);dl:(len: 8)), (fc:(freq:185);dl:(len: 8)), (fc:(freq:121);dl:(len: 8)),
  967. (fc:(freq:249);dl:(len: 8)), (fc:(freq:  5);dl:(len: 8)), (fc:(freq:133);dl:(len: 8)),
  968. (fc:(freq: 69);dl:(len: 8)), (fc:(freq:197);dl:(len: 8)), (fc:(freq: 37);dl:(len: 8)),
  969. (fc:(freq:165);dl:(len: 8)), (fc:(freq:101);dl:(len: 8)), (fc:(freq:229);dl:(len: 8)),
  970. (fc:(freq: 21);dl:(len: 8)), (fc:(freq:149);dl:(len: 8)), (fc:(freq: 85);dl:(len: 8)),
  971. (fc:(freq:213);dl:(len: 8)), (fc:(freq: 53);dl:(len: 8)), (fc:(freq:181);dl:(len: 8)),
  972. (fc:(freq:117);dl:(len: 8)), (fc:(freq:245);dl:(len: 8)), (fc:(freq: 13);dl:(len: 8)),
  973. (fc:(freq:141);dl:(len: 8)), (fc:(freq: 77);dl:(len: 8)), (fc:(freq:205);dl:(len: 8)),
  974. (fc:(freq: 45);dl:(len: 8)), (fc:(freq:173);dl:(len: 8)), (fc:(freq:109);dl:(len: 8)),
  975. (fc:(freq:237);dl:(len: 8)), (fc:(freq: 29);dl:(len: 8)), (fc:(freq:157);dl:(len: 8)),
  976. (fc:(freq: 93);dl:(len: 8)), (fc:(freq:221);dl:(len: 8)), (fc:(freq: 61);dl:(len: 8)),
  977. (fc:(freq:189);dl:(len: 8)), (fc:(freq:125);dl:(len: 8)), (fc:(freq:253);dl:(len: 8)),
  978. (fc:(freq: 19);dl:(len: 9)), (fc:(freq:275);dl:(len: 9)), (fc:(freq:147);dl:(len: 9)),
  979. (fc:(freq:403);dl:(len: 9)), (fc:(freq: 83);dl:(len: 9)), (fc:(freq:339);dl:(len: 9)),
  980. (fc:(freq:211);dl:(len: 9)), (fc:(freq:467);dl:(len: 9)), (fc:(freq: 51);dl:(len: 9)),
  981. (fc:(freq:307);dl:(len: 9)), (fc:(freq:179);dl:(len: 9)), (fc:(freq:435);dl:(len: 9)),
  982. (fc:(freq:115);dl:(len: 9)), (fc:(freq:371);dl:(len: 9)), (fc:(freq:243);dl:(len: 9)),
  983. (fc:(freq:499);dl:(len: 9)), (fc:(freq: 11);dl:(len: 9)), (fc:(freq:267);dl:(len: 9)),
  984. (fc:(freq:139);dl:(len: 9)), (fc:(freq:395);dl:(len: 9)), (fc:(freq: 75);dl:(len: 9)),
  985. (fc:(freq:331);dl:(len: 9)), (fc:(freq:203);dl:(len: 9)), (fc:(freq:459);dl:(len: 9)),
  986. (fc:(freq: 43);dl:(len: 9)), (fc:(freq:299);dl:(len: 9)), (fc:(freq:171);dl:(len: 9)),
  987. (fc:(freq:427);dl:(len: 9)), (fc:(freq:107);dl:(len: 9)), (fc:(freq:363);dl:(len: 9)),
  988. (fc:(freq:235);dl:(len: 9)), (fc:(freq:491);dl:(len: 9)), (fc:(freq: 27);dl:(len: 9)),
  989. (fc:(freq:283);dl:(len: 9)), (fc:(freq:155);dl:(len: 9)), (fc:(freq:411);dl:(len: 9)),
  990. (fc:(freq: 91);dl:(len: 9)), (fc:(freq:347);dl:(len: 9)), (fc:(freq:219);dl:(len: 9)),
  991. (fc:(freq:475);dl:(len: 9)), (fc:(freq: 59);dl:(len: 9)), (fc:(freq:315);dl:(len: 9)),
  992. (fc:(freq:187);dl:(len: 9)), (fc:(freq:443);dl:(len: 9)), (fc:(freq:123);dl:(len: 9)),
  993. (fc:(freq:379);dl:(len: 9)), (fc:(freq:251);dl:(len: 9)), (fc:(freq:507);dl:(len: 9)),
  994. (fc:(freq:  7);dl:(len: 9)), (fc:(freq:263);dl:(len: 9)), (fc:(freq:135);dl:(len: 9)),
  995. (fc:(freq:391);dl:(len: 9)), (fc:(freq: 71);dl:(len: 9)), (fc:(freq:327);dl:(len: 9)),
  996. (fc:(freq:199);dl:(len: 9)), (fc:(freq:455);dl:(len: 9)), (fc:(freq: 39);dl:(len: 9)),
  997. (fc:(freq:295);dl:(len: 9)), (fc:(freq:167);dl:(len: 9)), (fc:(freq:423);dl:(len: 9)),
  998. (fc:(freq:103);dl:(len: 9)), (fc:(freq:359);dl:(len: 9)), (fc:(freq:231);dl:(len: 9)),
  999. (fc:(freq:487);dl:(len: 9)), (fc:(freq: 23);dl:(len: 9)), (fc:(freq:279);dl:(len: 9)),
  1000. (fc:(freq:151);dl:(len: 9)), (fc:(freq:407);dl:(len: 9)), (fc:(freq: 87);dl:(len: 9)),
  1001. (fc:(freq:343);dl:(len: 9)), (fc:(freq:215);dl:(len: 9)), (fc:(freq:471);dl:(len: 9)),
  1002. (fc:(freq: 55);dl:(len: 9)), (fc:(freq:311);dl:(len: 9)), (fc:(freq:183);dl:(len: 9)),
  1003. (fc:(freq:439);dl:(len: 9)), (fc:(freq:119);dl:(len: 9)), (fc:(freq:375);dl:(len: 9)),
  1004. (fc:(freq:247);dl:(len: 9)), (fc:(freq:503);dl:(len: 9)), (fc:(freq: 15);dl:(len: 9)),
  1005. (fc:(freq:271);dl:(len: 9)), (fc:(freq:143);dl:(len: 9)), (fc:(freq:399);dl:(len: 9)),
  1006. (fc:(freq: 79);dl:(len: 9)), (fc:(freq:335);dl:(len: 9)), (fc:(freq:207);dl:(len: 9)),
  1007. (fc:(freq:463);dl:(len: 9)), (fc:(freq: 47);dl:(len: 9)), (fc:(freq:303);dl:(len: 9)),
  1008. (fc:(freq:175);dl:(len: 9)), (fc:(freq:431);dl:(len: 9)), (fc:(freq:111);dl:(len: 9)),
  1009. (fc:(freq:367);dl:(len: 9)), (fc:(freq:239);dl:(len: 9)), (fc:(freq:495);dl:(len: 9)),
  1010. (fc:(freq: 31);dl:(len: 9)), (fc:(freq:287);dl:(len: 9)), (fc:(freq:159);dl:(len: 9)),
  1011. (fc:(freq:415);dl:(len: 9)), (fc:(freq: 95);dl:(len: 9)), (fc:(freq:351);dl:(len: 9)),
  1012. (fc:(freq:223);dl:(len: 9)), (fc:(freq:479);dl:(len: 9)), (fc:(freq: 63);dl:(len: 9)),
  1013. (fc:(freq:319);dl:(len: 9)), (fc:(freq:191);dl:(len: 9)), (fc:(freq:447);dl:(len: 9)),
  1014. (fc:(freq:127);dl:(len: 9)), (fc:(freq:383);dl:(len: 9)), (fc:(freq:255);dl:(len: 9)),
  1015. (fc:(freq:511);dl:(len: 9)), (fc:(freq:  0);dl:(len: 7)), (fc:(freq: 64);dl:(len: 7)),
  1016. (fc:(freq: 32);dl:(len: 7)), (fc:(freq: 96);dl:(len: 7)), (fc:(freq: 16);dl:(len: 7)),
  1017. (fc:(freq: 80);dl:(len: 7)), (fc:(freq: 48);dl:(len: 7)), (fc:(freq:112);dl:(len: 7)),
  1018. (fc:(freq:  8);dl:(len: 7)), (fc:(freq: 72);dl:(len: 7)), (fc:(freq: 40);dl:(len: 7)),
  1019. (fc:(freq:104);dl:(len: 7)), (fc:(freq: 24);dl:(len: 7)), (fc:(freq: 88);dl:(len: 7)),
  1020. (fc:(freq: 56);dl:(len: 7)), (fc:(freq:120);dl:(len: 7)), (fc:(freq:  4);dl:(len: 7)),
  1021. (fc:(freq: 68);dl:(len: 7)), (fc:(freq: 36);dl:(len: 7)), (fc:(freq:100);dl:(len: 7)),
  1022. (fc:(freq: 20);dl:(len: 7)), (fc:(freq: 84);dl:(len: 7)), (fc:(freq: 52);dl:(len: 7)),
  1023. (fc:(freq:116);dl:(len: 7)), (fc:(freq:  3);dl:(len: 8)), (fc:(freq:131);dl:(len: 8)),
  1024. (fc:(freq: 67);dl:(len: 8)), (fc:(freq:195);dl:(len: 8)), (fc:(freq: 35);dl:(len: 8)),
  1025. (fc:(freq:163);dl:(len: 8)), (fc:(freq: 99);dl:(len: 8)), (fc:(freq:227);dl:(len: 8))
  1026. );
  1027. type
  1028.    tstatic_dtree = array[0..D_CODES-1] of ct_data;
  1029. { The static distance tree. (Actually a trivial tree since all lens use
  1030.   5 bits.) }
  1031. const
  1032.   static_dtree : tstatic_dtree = (
  1033. (fc:(freq: 0); dl:(len:5)), (fc:(freq:16); dl:(len:5)), (fc:(freq: 8); dl:(len:5)),
  1034. (fc:(freq:24); dl:(len:5)), (fc:(freq: 4); dl:(len:5)), (fc:(freq:20); dl:(len:5)),
  1035. (fc:(freq:12); dl:(len:5)), (fc:(freq:28); dl:(len:5)), (fc:(freq: 2); dl:(len:5)),
  1036. (fc:(freq:18); dl:(len:5)), (fc:(freq:10); dl:(len:5)), (fc:(freq:26); dl:(len:5)),
  1037. (fc:(freq: 6); dl:(len:5)), (fc:(freq:22); dl:(len:5)), (fc:(freq:14); dl:(len:5)),
  1038. (fc:(freq:30); dl:(len:5)), (fc:(freq: 1); dl:(len:5)), (fc:(freq:17); dl:(len:5)),
  1039. (fc:(freq: 9); dl:(len:5)), (fc:(freq:25); dl:(len:5)), (fc:(freq: 5); dl:(len:5)),
  1040. (fc:(freq:21); dl:(len:5)), (fc:(freq:13); dl:(len:5)), (fc:(freq:29); dl:(len:5)),
  1041. (fc:(freq: 3); dl:(len:5)), (fc:(freq:19); dl:(len:5)), (fc:(freq:11); dl:(len:5)),
  1042. (fc:(freq:27); dl:(len:5)), (fc:(freq: 7); dl:(len:5)), (fc:(freq:23); dl:(len:5))
  1043. );
  1044. { Distance codes. The first 256 values correspond to the distances
  1045.   3 .. 258, the last 256 values correspond to the top 8 bits of
  1046.   the 15 bit distances. }
  1047.   _dist_code : array[0..DIST_CODE_LEN-1] of uch = (
  1048.  0,  1,  2,  3,  4,  4,  5,  5,  6,  6,  6,  6,  7,  7,  7,  7,  8,  8,  8,  8,
  1049.  8,  8,  8,  8,  9,  9,  9,  9,  9,  9,  9,  9, 10, 10, 10, 10, 10, 10, 10, 10,
  1050. 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11,
  1051. 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  1052. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 13, 13, 13, 13,
  1053. 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13,
  1054. 13, 13, 13, 13, 13, 13, 13, 13, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14,
  1055. 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14,
  1056. 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14,
  1057. 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 15, 15, 15, 15, 15, 15, 15, 15,
  1058. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  1059. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  1060. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,  0,  0, 16, 17,
  1061. 18, 18, 19, 19, 20, 20, 20, 20, 21, 21, 21, 21, 22, 22, 22, 22, 22, 22, 22, 22,
  1062. 23, 23, 23, 23, 23, 23, 23, 23, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
  1063. 24, 24, 24, 24, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
  1064. 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26,
  1065. 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 27, 27, 27, 27, 27, 27, 27, 27,
  1066. 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27,
  1067. 27, 27, 27, 27, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
  1068. 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
  1069. 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
  1070. 28, 28, 28, 28, 28, 28, 28, 28, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
  1071. 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
  1072. 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
  1073. 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29
  1074. );
  1075. { length code for each normalized match length (0 == MIN_MATCH) }
  1076.   _length_code : array[0..MAX_MATCH-MIN_MATCH+1-1] of uch = (
  1077.  0,  1,  2,  3,  4,  5,  6,  7,  8,  8,  9,  9, 10, 10, 11, 11, 12, 12, 12, 12,
  1078. 13, 13, 13, 13, 14, 14, 14, 14, 15, 15, 15, 15, 16, 16, 16, 16, 16, 16, 16, 16,
  1079. 17, 17, 17, 17, 17, 17, 17, 17, 18, 18, 18, 18, 18, 18, 18, 18, 19, 19, 19, 19,
  1080. 19, 19, 19, 19, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20,
  1081. 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 22, 22, 22, 22,
  1082. 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 23, 23, 23, 23, 23, 23, 23, 23,
  1083. 23, 23, 23, 23, 23, 23, 23, 23, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
  1084. 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
  1085. 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
  1086. 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 26, 26, 26, 26, 26, 26, 26, 26,
  1087. 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26,
  1088. 26, 26, 26, 26, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27,
  1089. 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 28
  1090. );
  1091.   
  1092. { First normalized length for each code (0 = MIN_MATCH) }
  1093.   base_length : array[0..LENGTH_CODES-1] of int = (
  1094. 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 12, 14, 16, 20, 24, 28, 32, 40, 48, 56,
  1095. 64, 80, 96, 112, 128, 160, 192, 224, 0
  1096. );
  1097. { First normalized distance for each code (0 = distance of 1) }
  1098.   base_dist : array[0..D_CODES-1] of int = (
  1099.     0,     1,     2,     3,     4,     6,     8,    12,    16,    24,
  1100.    32,    48,    64,    96,   128,   192,   256,   384,   512,   768,
  1101.  1024,  1536,  2048,  3072,  4096,  6144,  8192, 12288, 16384, 24576
  1102. );
  1103. {$endif}
  1104. { ===========================================================================
  1105.   Constants }
  1106. const
  1107.   MAX_BL_BITS = 7;
  1108. { Bit length codes must not exceed MAX_BL_BITS bits }
  1109. const
  1110.   END_BLOCK = 256;
  1111. { end of block literal code }
  1112. const
  1113.   REP_3_6 = 16;
  1114. { repeat previous bit length 3-6 times (2 bits of repeat count) }
  1115. const
  1116.   REPZ_3_10 = 17;
  1117. { repeat a zero length 3-10 times  (3 bits of repeat count) }
  1118. const
  1119.   REPZ_11_138 = 18;
  1120. { repeat a zero length 11-138 times  (7 bits of repeat count) }
  1121. {local}
  1122. const
  1123.   extra_lbits : array[0..LENGTH_CODES-1] of int
  1124.     { extra bits for each length code }
  1125.    = (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);
  1126. {local}
  1127. const
  1128.   extra_dbits : array[0..D_CODES-1] of int
  1129.     { extra bits for each distance code }
  1130.    = (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);
  1131. {local}
  1132. const
  1133.   extra_blbits : array[0..BL_CODES-1] of int { extra bits for each bit length code }
  1134.    = (0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7);
  1135. {local}
  1136. const
  1137.   bl_order : array[0..BL_CODES-1] of uch
  1138.    = (16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15);
  1139. { The lengths of the bit length codes are sent in order of decreasing
  1140.   probability, to avoid transmitting the lengths for unused bit length codes.
  1141.  }
  1142. const
  1143.   Buf_size = (8 * 2*sizeof(char));
  1144. { Number of bits used within bi_buf. (bi_buf might be implemented on
  1145.   more than 16 bits on some systems.) }
  1146. { ===========================================================================
  1147.   Local data. These are initialized only once. }
  1148. {$ifdef GEN_TREES_H)}
  1149. { non ANSI compilers may not accept trees.h }
  1150. const
  1151.   DIST_CODE_LEN = 512; { see definition of array dist_code below }
  1152. {local}
  1153. var
  1154.   static_ltree : array[0..L_CODES+2-1] of ct_data;
  1155. { The static literal tree. Since the bit lengths are imposed, there is no
  1156.   need for the L_CODES extra codes used during heap construction. However
  1157.   The codes 286 and 287 are needed to build a canonical tree (see _tr_init
  1158.   below). }
  1159. {local}
  1160.   static_dtree : array[0..D_CODES-1] of ct_data;
  1161. { The static distance tree. (Actually a trivial tree since all codes use
  1162.   5 bits.) }
  1163.   _dist_code : array[0..DIST_CODE_LEN-1] of uch;
  1164. { Distance codes. The first 256 values correspond to the distances
  1165.   3 .. 258, the last 256 values correspond to the top 8 bits of
  1166.   the 15 bit distances. }
  1167.   _length_code : array[0..MAX_MATCH-MIN_MATCH+1-1] of uch;
  1168. { length code for each normalized match length (0 == MIN_MATCH) }
  1169. {local}
  1170.   base_length : array[0..LENGTH_CODES-1] of int;
  1171. { First normalized length for each code (0 = MIN_MATCH) }
  1172. {local}
  1173.   base_dist : array[0..D_CODES-1] of int;
  1174. { First normalized distance for each code (0 = distance of 1) }
  1175. {$endif} { GEN_TREES_H }
  1176. {local}
  1177. const
  1178.   static_l_desc :  static_tree_desc  =
  1179.       (static_tree: {tree_ptr}(@(static_ltree));  { pointer to array of ct_data }
  1180.        extra_bits: {pzIntfArray}(@(extra_lbits)); { pointer to array of int }
  1181.        extra_base: LITERALS+1;
  1182.        elems: L_CODES;
  1183.        max_length: MAX_BITS);
  1184. {local}
  1185. const
  1186.   static_d_desc : static_tree_desc  =
  1187.       (static_tree: {tree_ptr}(@(static_dtree));
  1188.        extra_bits: {pzIntfArray}(@(extra_dbits));
  1189.        extra_base : 0;
  1190.        elems: D_CODES;
  1191.        max_length: MAX_BITS);
  1192. {local}
  1193. const
  1194.   static_bl_desc : static_tree_desc =
  1195.       (static_tree: {tree_ptr}(NIL);
  1196.        extra_bits: {pzIntfArray}@(extra_blbits);
  1197.        extra_base : 0;
  1198.        elems: BL_CODES;
  1199.        max_length: MAX_BL_BITS);
  1200. (* ===========================================================================
  1201.   Local (static) routines in this file. }
  1202. procedure tr_static_init;
  1203. procedure init_block(var deflate_state);
  1204. procedure pqdownheap(var s : deflate_state;
  1205.                      var tree : ct_data;
  1206.                      k : int);
  1207. procedure gen_bitlen(var s : deflate_state;
  1208.                      var desc : tree_desc);
  1209. procedure gen_codes(var tree : ct_data;
  1210.                     max_code : int;
  1211.                     bl_count : pushf);
  1212. procedure build_tree(var s : deflate_state;
  1213.                      var desc : tree_desc);
  1214. procedure scan_tree(var s : deflate_state;
  1215.                     var tree : ct_data;
  1216.                     max_code : int);
  1217. procedure send_tree(var s : deflate_state;
  1218.                     var tree : ct_data;
  1219.                     max_code : int);
  1220. function build_bl_tree(var deflate_state) : int;
  1221. procedure send_all_trees(var deflate_state;
  1222.                          lcodes : int;
  1223.                          dcodes : int;
  1224.                          blcodes : int);
  1225. procedure compress_block(var s : deflate_state;
  1226.                          var ltree : ct_data;
  1227.                          var dtree : ct_data);
  1228. procedure set_data_type(var s : deflate_state);
  1229. function bi_reverse(value : unsigned;
  1230.                     length : int) : unsigned;
  1231. procedure bi_windup(var deflate_state);
  1232. procedure bi_flush(var deflate_state);
  1233. procedure copy_block(var deflate_state;
  1234.                      buf : pcharf;
  1235.                      len : unsigned;
  1236.                      header : int);
  1237. *)
  1238. {$ifdef GEN_TREES_H}
  1239. {local}
  1240. procedure gen_trees_header;
  1241. {$endif}
  1242. (*
  1243. { ===========================================================================
  1244.   Output a short LSB first on the stream.
  1245.   IN assertion: there is enough room in pendingBuf. }
  1246. macro put_short(s, w)
  1247. begin
  1248.     {put_byte(s, (uch)((w) & 0xff));}
  1249.     s.pending_buf^[s.pending] := uch((w) and $ff);
  1250.     Inc(s.pending);
  1251.     {put_byte(s, (uch)((ush)(w) >> 8));}
  1252.     s.pending_buf^[s.pending] := uch(ush(w) shr 8);;
  1253.     Inc(s.pending);
  1254. end
  1255. *)
  1256. { ===========================================================================
  1257.   Send a value on a given number of bits.
  1258.   IN assertion: length <= 16 and value fits in length bits. }
  1259. {local}
  1260. procedure send_bits(var s : deflate_state;
  1261.                     value : int;   { value to send }
  1262.                     length : int); { number of bits }
  1263. begin
  1264.   {$ifdef DEBUG}
  1265.   Tracevv(' l '+IntToStr(length)+ ' v '+IntToStr(value));
  1266.   Assert((length > 0) and (length <= 15), 'invalid length');
  1267.   Inc(s.bits_sent, ulg(length));
  1268.   {$ENDIF}
  1269.   { If not enough room in bi_buf, use (valid) bits from bi_buf and
  1270.     (16 - bi_valid) bits from value, leaving (width - (16-bi_valid))
  1271.     unused bits in value. }
  1272.   {$IFOPT Q+} {$Q-} {$DEFINE NoOverflowCheck} {$ENDIF}
  1273.   {$IFOPT R+} {$R-} {$DEFINE NoRangeCheck} {$ENDIF}
  1274.   if (s.bi_valid > int(Buf_size) - length) then
  1275.   begin
  1276.     s.bi_buf := s.bi_buf or int(value shl s.bi_valid);
  1277.     {put_short(s, s.bi_buf);}
  1278.     s.pending_buf^[s.pending] := uch(s.bi_buf and $ff);
  1279.     Inc(s.pending);
  1280.     s.pending_buf^[s.pending] := uch(ush(s.bi_buf) shr 8);;
  1281.     Inc(s.pending);
  1282.     s.bi_buf := ush(value) shr (Buf_size - s.bi_valid);
  1283.     Inc(s.bi_valid, length - Buf_size);
  1284.   end
  1285.   else
  1286.   begin
  1287.     s.bi_buf := s.bi_buf or int(value shl s.bi_valid);
  1288.     Inc(s.bi_valid, length);
  1289.   end;
  1290.   {$IFDEF NoOverflowCheck} {$Q+} {$UNDEF NoOverflowCheck} {$ENDIF}
  1291.   {$IFDEF NoRangeCheck} {$Q+} {$UNDEF NoRangeCheck} {$ENDIF}
  1292. end;
  1293. { ===========================================================================
  1294.   Reverse the first len bits of a code, using straightforward code (a faster
  1295.   method would use a table)
  1296.   IN assertion: 1 <= len <= 15 }
  1297. {local}
  1298. function bi_reverse(code : unsigned;         { the value to invert }
  1299.                     len : int) : unsigned;   { its bit length }
  1300. var
  1301.   res : unsigned; {register}
  1302. begin
  1303.   res := 0;
  1304.   repeat
  1305.     res := res or (code and 1);
  1306.     code := code shr 1;
  1307.     res := res shl 1;
  1308.     Dec(len);
  1309.   until (len <= 0);
  1310.   bi_reverse := res shr 1;
  1311. end;
  1312. { ===========================================================================
  1313.   Generate the codes for a given tree and bit counts (which need not be
  1314.   optimal).
  1315.   IN assertion: the array bl_count contains the bit length statistics for
  1316.   the given tree and the field len is set for all tree elements.
  1317.   OUT assertion: the field code is set for all tree elements of non
  1318.       zero code length. }
  1319. {local}
  1320. procedure gen_codes(tree : tree_ptr;  { the tree to decorate }
  1321.                     max_code : int;   { largest code with non zero frequency }
  1322.                     var bl_count : array of ushf);  { number of codes at each bit length }
  1323. var
  1324.   next_code : array[0..MAX_BITS+1-1] of ush; { next code value for each bit length }
  1325.   code : ush;              { running code value }
  1326.   bits : int;                  { bit index }
  1327.   n : int;                     { code index }
  1328. var
  1329.   len : int;
  1330. begin
  1331.   code := 0;
  1332.   { The distribution counts are first used to generate the code values
  1333.     without bit reversal. }
  1334.   for bits := 1 to MAX_BITS do
  1335.   begin
  1336.     code := ((code + bl_count[bits-1]) shl 1);
  1337.     next_code[bits] := code;
  1338.   end;
  1339.   { Check that the bit counts in bl_count are consistent. The last code
  1340.     must be all ones. }
  1341.   {$IFDEF DEBUG}
  1342.   Assert (code + bl_count[MAX_BITS]-1 = (1 shl MAX_BITS)-1,
  1343.           'inconsistent bit counts');
  1344.   Tracev(#13'gen_codes: max_code '+IntToStr(max_code));
  1345.   {$ENDIF}
  1346.   for n := 0 to max_code do
  1347.   begin
  1348.     len := tree^[n].dl.Len;
  1349.     if (len = 0) then
  1350.       continue;
  1351.     { Now reverse the bits }
  1352.     tree^[n].fc.Code := bi_reverse(next_code[len], len);
  1353.     Inc(next_code[len]);
  1354.     {$ifdef DEBUG}
  1355.     if (n>31) and (n<128) then
  1356.       Tracecv(tree <> tree_ptr(@static_ltree),
  1357.        (^M'n #'+IntToStr(n)+' '+char(n)+' l '+IntToStr(len)+' c '+
  1358.          IntToStr(tree^[n].fc.Code)+' ('+IntToStr(next_code[len]-1)+')'))
  1359.     else
  1360.       Tracecv(tree <> tree_ptr(@static_ltree),
  1361.       (^M'n #'+IntToStr(n)+'   l '+IntToStr(len)+' c '+
  1362.          IntToStr(tree^[n].fc.Code)+' ('+IntToStr(next_code[len]-1)+')'));
  1363.     {$ENDIF}
  1364.   end;
  1365. end;
  1366. { ===========================================================================
  1367.   Genererate the file trees.h describing the static trees. }
  1368. {$ifdef GEN_TREES_H}
  1369. macro SEPARATOR(i, last, width)
  1370.   if (i) = (last) then
  1371.     ( ^M');'^M^M
  1372.   else    
  1373.     if (i) mod (width) = (width)-1 then
  1374.        ','^M
  1375.      else
  1376.        ', '
  1377. procedure gen_trees_header;
  1378. var
  1379.   header : system.text;
  1380.   i : int;
  1381. begin
  1382.   system.assign(header, 'trees.inc');
  1383.   {$I-}
  1384.   ReWrite(header);
  1385.   {$I+}
  1386.   Assert (IOresult <> 0, 'Can''t open trees.h');
  1387.   WriteLn(header,
  1388.     '{ header created automatically with -DGEN_TREES_H }'^M);
  1389.   WriteLn(header, 'local const ct_data static_ltree[L_CODES+2] := (');
  1390.   for i := 0 to L_CODES+2-1 do
  1391.   begin
  1392.     WriteLn(header, '((%3u),(%3u))%s', static_ltree[i].Code,
  1393. static_ltree[i].Len, SEPARATOR(i, L_CODES+1, 5));
  1394.   end;
  1395.   WriteLn(header, 'local const ct_data static_dtree[D_CODES] := (');
  1396.   for i := 0 to D_CODES-1 do
  1397.   begin
  1398.     WriteLn(header, '((%2u),(%2u))%s', static_dtree[i].Code,
  1399. static_dtree[i].Len, SEPARATOR(i, D_CODES-1, 5));
  1400.   end;
  1401.   WriteLn(header, 'const uch _dist_code[DIST_CODE_LEN] := (');
  1402.   for i := 0 to DIST_CODE_LEN-1 do
  1403.   begin
  1404.     WriteLn(header, '%2u%s', _dist_code[i],
  1405. SEPARATOR(i, DIST_CODE_LEN-1, 20));
  1406.   end;
  1407.   WriteLn(header, 'const uch _length_code[MAX_MATCH-MIN_MATCH+1]= (');
  1408.   for i := 0 to MAX_MATCH-MIN_MATCH+1-1 do
  1409.   begin
  1410.     WriteLn(header, '%2u%s', _length_code[i],
  1411. SEPARATOR(i, MAX_MATCH-MIN_MATCH, 20));
  1412.   end;
  1413.   WriteLn(header, 'local const int base_length[LENGTH_CODES] := (');
  1414.   for i := 0 to LENGTH_CODES-1 do
  1415.   begin
  1416.     WriteLn(header, '%1u%s', base_length[i],
  1417. SEPARATOR(i, LENGTH_CODES-1, 20));
  1418.   end;
  1419.   WriteLn(header, 'local const int base_dist[D_CODES] := (');
  1420.   for i := 0 to D_CODES-1 do
  1421.   begin
  1422.     WriteLn(header, '%5u%s', base_dist[i],
  1423. SEPARATOR(i, D_CODES-1, 10));
  1424.   end;
  1425.   close(header);
  1426. end;
  1427. {$endif} { GEN_TREES_H }
  1428. { ===========================================================================
  1429.   Initialize the various 'constant' tables. }
  1430. {local}
  1431. procedure tr_static_init;
  1432. {$ifdef GEN_TREES_H}
  1433. const
  1434.   static_init_done : boolean = FALSE;
  1435. var
  1436.   n : int;        { iterates over tree elements }
  1437.   bits : int;     { bit counter }
  1438.   length : int;   { length value }
  1439.   code : int;     { code value }
  1440.   dist : int;     { distance index }
  1441.   bl_count : array[0..MAX_BITS+1-1] of ush;
  1442.     { number of codes at each bit length for an optimal tree }
  1443. begin
  1444.     if (static_init_done) then
  1445.       exit;
  1446.     { Initialize the mapping length (0..255) -> length code (0..28) }
  1447.     length := 0;
  1448.     for code := 0 to LENGTH_CODES-1-1 do
  1449.     begin
  1450.       base_length[code] := length;
  1451.       for n := 0 to (1 shl extra_lbits[code])-1 do
  1452.       begin
  1453.         _length_code[length] := uch(code);
  1454.         Inc(length);
  1455.       end;
  1456.     end;
  1457.     Assert (length = 256, 'tr_static_init: length <> 256');
  1458.     { Note that the length 255 (match length 258) can be represented
  1459.       in two different ways: code 284 + 5 bits or code 285, so we
  1460.       overwrite length_code[255] to use the best encoding: }
  1461.     _length_code[length-1] := uch(code);
  1462.     { Initialize the mapping dist (0..32K) -> dist code (0..29) }
  1463.     dist := 0;
  1464.     for code := 0 to 16-1 do
  1465.     begin
  1466.       base_dist[code] := dist;
  1467.       for n := 0 to (1 shl extra_dbits[code])-1 do
  1468.       begin
  1469.         _dist_code[dist] := uch(code);
  1470.         Inc(dist);
  1471.       end;
  1472.     end;
  1473.     Assert (dist = 256, 'tr_static_init: dist <> 256');
  1474.     dist := dist shr 7; { from now on, all distances are divided by 128 }
  1475.     for code := 16 to D_CODES-1 do
  1476.     begin
  1477.       base_dist[code] := dist shl 7;
  1478.       for n := 0 to (1 shl (extra_dbits[code]-7))-1 do
  1479.       begin
  1480.         _dist_code[256 + dist] := uch(code);
  1481.         Inc(dist);
  1482.       end;
  1483.     end;
  1484.     Assert (dist = 256, 'tr_static_init: 256+dist <> 512');
  1485.     { Construct the codes of the static literal tree }
  1486.     for bits := 0 to MAX_BITS do
  1487.       bl_count[bits] := 0;
  1488.     n := 0;
  1489.     while (n <= 143) do
  1490.     begin
  1491.       static_ltree[n].dl.Len := 8;
  1492.       Inc(n);
  1493.       Inc(bl_count[8]);
  1494.     end;
  1495.     while (n <= 255) do
  1496.     begin
  1497.       static_ltree[n].dl.Len := 9;
  1498.       Inc(n);
  1499.       Inc(bl_count[9]);
  1500.     end;
  1501.     while (n <= 279) do
  1502.     begin
  1503.       static_ltree[n].dl.Len := 7;
  1504.       Inc(n);
  1505.       Inc(bl_count[7]);
  1506.     end;
  1507.     while (n <= 287) do
  1508.     begin
  1509.       static_ltree[n].dl.Len := 8;
  1510.       Inc(n);
  1511.       Inc(bl_count[8]);
  1512.     end;
  1513.     { Codes 286 and 287 do not exist, but we must include them in the
  1514.       tree construction to get a canonical Huffman tree (longest code
  1515.       all ones)  }
  1516.     gen_codes(tree_ptr(@static_ltree), L_CODES+1, bl_count);
  1517.     { The static distance tree is trivial: }
  1518.     for n := 0 to D_CODES-1 do
  1519.     begin
  1520.       static_dtree[n].dl.Len := 5;
  1521.       static_dtree[n].fc.Code := bi_reverse(unsigned(n), 5);
  1522.     end;
  1523.     static_init_done := TRUE;
  1524.     gen_trees_header;  { save to include file }
  1525. {$else}
  1526. begin
  1527. {$endif} { GEN_TREES_H) }
  1528. end;
  1529. { ===========================================================================
  1530.   Initialize a new block. }
  1531. {local}
  1532. procedure init_block(var s : deflate_state);
  1533. var
  1534.   n : int; { iterates over tree elements }
  1535. begin
  1536.   { Initialize the trees. }
  1537.   for n := 0 to L_CODES-1 do
  1538.     s.dyn_ltree[n].fc.Freq := 0;
  1539.   for n := 0 to D_CODES-1 do
  1540.     s.dyn_dtree[n].fc.Freq := 0;
  1541.   for n := 0 to BL_CODES-1 do
  1542.     s.bl_tree[n].fc.Freq := 0;
  1543.   s.dyn_ltree[END_BLOCK].fc.Freq := 1;
  1544.   s.static_len := Long(0);
  1545.   s.opt_len := Long(0);
  1546.   s.matches := 0;
  1547.   s.last_lit := 0;
  1548. end;
  1549. const
  1550.   SMALLEST = 1;
  1551. { Index within the heap array of least frequent node in the Huffman tree }
  1552. { ===========================================================================
  1553.   Initialize the tree data structures for a new zlib stream. }
  1554. procedure _tr_init(var s : deflate_state);
  1555. begin
  1556.   tr_static_init;
  1557.   s.compressed_len := Long(0);
  1558.   s.l_desc.dyn_tree := tree_ptr(@s.dyn_ltree);
  1559.   s.l_desc.stat_desc := @static_l_desc;
  1560.   s.d_desc.dyn_tree := tree_ptr(@s.dyn_dtree);
  1561.   s.d_desc.stat_desc := @static_d_desc;
  1562.   s.bl_desc.dyn_tree := tree_ptr(@s.bl_tree);
  1563.   s.bl_desc.stat_desc := @static_bl_desc;
  1564.   s.bi_buf := 0;
  1565.   s.bi_valid := 0;
  1566.   s.last_eob_len := 8; { enough lookahead for inflate }
  1567. {$ifdef DEBUG}
  1568.   s.bits_sent := Long(0);
  1569. {$endif}
  1570.   { Initialize the first block of the first file: }
  1571.   init_block(s);
  1572. end;
  1573. { ===========================================================================
  1574.   Remove the smallest element from the heap and recreate the heap with
  1575.   one less element. Updates heap and heap_len.
  1576. macro pqremove(s, tree, top)
  1577. begin
  1578.     top := s.heap[SMALLEST];
  1579.     s.heap[SMALLEST] := s.heap[s.heap_len];
  1580.     Dec(s.heap_len);
  1581.     pqdownheap(s, tree, SMALLEST);
  1582. end
  1583. }
  1584. { ===========================================================================
  1585.   Compares to subtrees, using the tree depth as tie breaker when
  1586.   the subtrees have equal frequency. This minimizes the worst case length.
  1587. macro smaller(tree, n, m, depth)
  1588.    ( (tree[n].Freq < tree[m].Freq) or
  1589.      ((tree[n].Freq = tree[m].Freq) and (depth[n] <= depth[m])) )
  1590. }
  1591. { ===========================================================================
  1592.   Restore the heap property by moving down the tree starting at node k,
  1593.   exchanging a node with the smallest of its two sons if necessary, stopping
  1594.   when the heap property is re-established (each father smaller than its
  1595.   two sons). }
  1596. {local}
  1597. procedure pqdownheap(var s : deflate_state;
  1598.                      var tree : tree_type;   { the tree to restore }
  1599.                      k : int);          { node to move down }
  1600. var
  1601.   v : int;
  1602.   j : int;
  1603. begin
  1604.   v := s.heap[k];
  1605.   j := k shl 1;  { left son of k }
  1606.   while (j <= s.heap_len) do
  1607.   begin
  1608.     { Set j to the smallest of the two sons: }
  1609.     if (j < s.heap_len) and
  1610.        {smaller(tree, s.heap[j+1], s.heap[j], s.depth)}
  1611.       ( (tree[s.heap[j+1]].fc.Freq < tree[s.heap[j]].fc.Freq) or
  1612.         ((tree[s.heap[j+1]].fc.Freq = tree[s.heap[j]].fc.Freq) and
  1613.          (s.depth[s.heap[j+1]] <= s.depth[s.heap[j]])) ) then
  1614.     begin
  1615.       Inc(j);
  1616.     end;
  1617.     { Exit if v is smaller than both sons }
  1618.     if {(smaller(tree, v, s.heap[j], s.depth))}
  1619.      ( (tree[v].fc.Freq < tree[s.heap[j]].fc.Freq) or
  1620.        ((tree[v].fc.Freq = tree[s.heap[j]].fc.Freq) and
  1621.         (s.depth[v] <= s.depth[s.heap[j]])) ) then
  1622.       break;
  1623.     { Exchange v with the smallest son }
  1624.     s.heap[k] := s.heap[j];
  1625.     k := j;
  1626.     { And continue down the tree, setting j to the left son of k }
  1627.     j := j shl 1;
  1628.   end;
  1629.   s.heap[k] := v;
  1630. end;
  1631. { ===========================================================================
  1632.   Compute the optimal bit lengths for a tree and update the total bit length
  1633.   for the current block.
  1634.   IN assertion: the fields freq and dad are set, heap[heap_max] and
  1635.      above are the tree nodes sorted by increasing frequency.
  1636.   OUT assertions: the field len is set to the optimal bit length, the
  1637.       array bl_count contains the frequencies for each bit length.
  1638.       The length opt_len is updated; static_len is also updated if stree is
  1639.       not null. }
  1640. {local}
  1641. procedure gen_bitlen(var s : deflate_state;
  1642.                      var desc : tree_desc);   { the tree descriptor }
  1643. var
  1644.   tree : tree_ptr;
  1645.   max_code : int;
  1646.   stree : tree_ptr; {const}
  1647.   extra : pzIntfArray; {const}
  1648.   base : int;
  1649.   max_length : int;
  1650.   h : int;              { heap index }
  1651.   n, m : int;           { iterate over the tree elements }
  1652.   bits : int;           { bit length }
  1653.   xbits : int;          { extra bits }
  1654.   f : ush;              { frequency }
  1655.   overflow : int;   { number of elements with bit length too large }
  1656. begin
  1657.   tree := desc.dyn_tree;
  1658.   max_code := desc.max_code;
  1659.   stree := desc.stat_desc^.static_tree;
  1660.   extra := desc.stat_desc^.extra_bits;
  1661.   base := desc.stat_desc^.extra_base;
  1662.   max_length := desc.stat_desc^.max_length;
  1663.   overflow := 0;
  1664.   for bits := 0 to MAX_BITS do
  1665.     s.bl_count[bits] := 0;
  1666.   { In a first pass, compute the optimal bit lengths (which may
  1667.     overflow in the case of the bit length tree). }
  1668.   tree^[s.heap[s.heap_max]].dl.Len := 0; { root of the heap }
  1669.   for h := s.heap_max+1 to HEAP_SIZE-1 do
  1670.   begin
  1671.     n := s.heap[h];
  1672.     bits := tree^[tree^[n].dl.Dad].dl.Len + 1;
  1673.     if (bits > max_length) then
  1674.     begin
  1675.       bits := max_length;
  1676.       Inc(overflow);
  1677.     end;
  1678.     tree^[n].dl.Len := ush(bits);
  1679.     { We overwrite tree[n].dl.Dad which is no longer needed }
  1680.     if (n > max_code) then
  1681.       continue; { not a leaf node }
  1682.     Inc(s.bl_count[bits]);
  1683.     xbits := 0;
  1684.     if (n >= base) then
  1685.       xbits := extra^[n-base];
  1686.     f := tree^[n].fc.Freq;
  1687.     Inc(s.opt_len, ulg(f) * (bits + xbits));
  1688.     if (stree <> NIL) then
  1689.       Inc(s.static_len, ulg(f) * (stree^[n].dl.Len + xbits));
  1690.   end;
  1691.   if (overflow = 0) then
  1692.     exit;
  1693.   {$ifdef DEBUG}
  1694.   Tracev(^M'bit length overflow');
  1695.   {$endif}
  1696.   { This happens for example on obj2 and pic of the Calgary corpus }
  1697.   { Find the first bit length which could increase: }
  1698.   repeat
  1699.     bits := max_length-1;
  1700.     while (s.bl_count[bits] = 0) do
  1701.       Dec(bits);
  1702.     Dec(s.bl_count[bits]);      { move one leaf down the tree }
  1703.     Inc(s.bl_count[bits+1], 2); { move one overflow item as its brother }
  1704.     Dec(s.bl_count[max_length]);
  1705.     { The brother of the overflow item also moves one step up,
  1706.       but this does not affect bl_count[max_length] }
  1707.     Dec(overflow, 2);
  1708.   until (overflow <= 0);
  1709.   { Now recompute all bit lengths, scanning in increasing frequency.
  1710.     h is still equal to HEAP_SIZE. (It is simpler to reconstruct all
  1711.     lengths instead of fixing only the wrong ones. This idea is taken
  1712.     from 'ar' written by Haruhiko Okumura.) }
  1713.   h := HEAP_SIZE;  { Delphi3: compiler warning w/o this }
  1714.   for bits := max_length downto 1 do
  1715.   begin
  1716.     n := s.bl_count[bits];
  1717.     while (n <> 0) do
  1718.     begin
  1719.       Dec(h);
  1720.       m := s.heap[h];
  1721.       if (m > max_code) then
  1722.         continue;
  1723.       if (tree^[m].dl.Len <> unsigned(bits)) then
  1724.       begin
  1725.         {$ifdef DEBUG}
  1726.         Trace('code '+IntToStr(m)+' bits '+IntToStr(tree^[m].dl.Len)
  1727.               +'.'+IntToStr(bits));
  1728.         {$ENDIF}
  1729.         Inc(s.opt_len, (long(bits) - long(tree^[m].dl.Len))
  1730.                         * long(tree^[m].fc.Freq) );
  1731.         tree^[m].dl.Len := ush(bits);
  1732.       end;
  1733.       Dec(n);
  1734.     end;
  1735.   end;
  1736. end;
  1737. { ===========================================================================
  1738.   Construct one Huffman tree and assigns the code bit strings and lengths.
  1739.   Update the total bit length for the current block.
  1740.   IN assertion: the field freq is set for all tree elements.
  1741.   OUT assertions: the fields len and code are set to the optimal bit length
  1742.       and corresponding code. The length opt_len is updated; static_len is
  1743.       also updated if stree is not null. The field max_code is set. }
  1744. {local}
  1745. procedure build_tree(var s : deflate_state;
  1746.                      var desc : tree_desc); { the tree descriptor }
  1747. var
  1748.   tree : tree_ptr;
  1749.   stree : tree_ptr; {const}
  1750.   elems : int;
  1751.   n, m : int;          { iterate over heap elements }
  1752.   max_code : int;      { largest code with non zero frequency }
  1753.   node : int;          { new node being created }
  1754. begin
  1755.   tree := desc.dyn_tree;
  1756.   stree := desc.stat_desc^.static_tree;
  1757.   elems := desc.stat_desc^.elems;
  1758.   max_code := -1;
  1759.   { Construct the initial heap, with least frequent element in
  1760.     heap[SMALLEST]. The sons of heap[n] are heap[2*n] and heap[2*n+1].
  1761.     heap[0] is not used. }
  1762.   s.heap_len := 0;
  1763.   s.heap_max := HEAP_SIZE;
  1764.   for n := 0 to elems-1 do
  1765.   begin
  1766.     if (tree^[n].fc.Freq <> 0) then
  1767.     begin
  1768.       max_code := n;
  1769.       Inc(s.heap_len);
  1770.       s.heap[s.heap_len] := n;
  1771.       s.depth[n] := 0;
  1772.     end
  1773.     else
  1774.     begin
  1775.       tree^[n].dl.Len := 0;
  1776.     end;
  1777.   end;
  1778.   { The pkzip format requires that at least one distance code exists,
  1779.     and that at least one bit should be sent even if there is only one
  1780.     possible code. So to avoid special checks later on we force at least
  1781.     two codes of non zero frequency. }
  1782.   while (s.heap_len < 2) do
  1783.   begin
  1784.     Inc(s.heap_len);
  1785.     if (max_code < 2) then
  1786.     begin
  1787.       Inc(max_code);
  1788.       s.heap[s.heap_len] := max_code;
  1789.       node := max_code;
  1790.     end
  1791.     else
  1792.     begin
  1793.       s.heap[s.heap_len] := 0;
  1794.       node := 0;
  1795.     end;
  1796.     tree^[node].fc.Freq := 1;
  1797.     s.depth[node] := 0;
  1798.     Dec(s.opt_len);
  1799.     if (stree <> NIL) then
  1800.       Dec(s.static_len, stree^[node].dl.Len);
  1801.     { node is 0 or 1 so it does not have extra bits }
  1802.   end;
  1803.   desc.max_code := max_code;
  1804.   { The elements heap[heap_len/2+1 .. heap_len] are leaves of the tree,
  1805.     establish sub-heaps of increasing lengths: }
  1806.   for n := s.heap_len div 2 downto 1 do
  1807.     pqdownheap(s, tree^, n);
  1808.   { Construct the Huffman tree by repeatedly combining the least two
  1809.     frequent nodes. }
  1810.   node := elems;              { next internal node of the tree }
  1811.   repeat
  1812.     {pqremove(s, tree, n);}  { n := node of least frequency }
  1813.     n := s.heap[SMALLEST];
  1814.     s.heap[SMALLEST] := s.heap[s.heap_len];
  1815.     Dec(s.heap_len);
  1816.     pqdownheap(s, tree^, SMALLEST);
  1817.     m := s.heap[SMALLEST]; { m := node of next least frequency }
  1818.     Dec(s.heap_max);
  1819.     s.heap[s.heap_max] := n; { keep the nodes sorted by frequency }
  1820.     Dec(s.heap_max);
  1821.     s.heap[s.heap_max] := m;
  1822.     { Create a new node father of n and m }
  1823.     tree^[node].fc.Freq := tree^[n].fc.Freq + tree^[m].fc.Freq;
  1824.     { maximum }
  1825.     if (s.depth[n] >= s.depth[m]) then
  1826.       s.depth[node] := uch (s.depth[n] + 1)
  1827.     else
  1828.       s.depth[node] := uch (s.depth[m] + 1);
  1829.     tree^[m].dl.Dad := ush(node);
  1830.     tree^[n].dl.Dad := ush(node);
  1831. {$ifdef DUMP_BL_TREE}
  1832.     if (tree = tree_ptr(@s.bl_tree)) then
  1833.     begin
  1834.       WriteLn(#13'node ',node,'(',tree^[node].fc.Freq,') sons ',n,
  1835.               '(',tree^[n].fc.Freq,') ', m, '(',tree^[m].fc.Freq,')');
  1836.     end;
  1837. {$endif}
  1838.     { and insert the new node in the heap }
  1839.     s.heap[SMALLEST] := node;
  1840.     Inc(node);
  1841.     pqdownheap(s, tree^, SMALLEST);
  1842.   until (s.heap_len < 2);
  1843.   Dec(s.heap_max);
  1844.   s.heap[s.heap_max] := s.heap[SMALLEST];
  1845.   { At this point, the fields freq and dad are set. We can now
  1846.     generate the bit lengths. }
  1847.   gen_bitlen(s, desc);
  1848.   { The field len is now set, we can generate the bit codes }
  1849.   gen_codes (tree, max_code, s.bl_count);
  1850. end;
  1851. { ===========================================================================
  1852.   Scan a literal or distance tree to determine the frequencies of the codes
  1853.   in the bit length tree. }
  1854. {local}
  1855. procedure scan_tree(var s : deflate_state;
  1856.                     var tree : array of ct_data;    { the tree to be scanned }
  1857.                     max_code : int);    { and its largest code of non zero frequency }
  1858. var
  1859.   n : int;                 { iterates over all tree elements }
  1860.   prevlen : int;           { last emitted length }
  1861.   curlen : int;            { length of current code }
  1862.   nextlen : int;           { length of next code }
  1863.   count : int;             { repeat count of the current code }
  1864.   max_count : int;         { max repeat count }
  1865.   min_count : int;         { min repeat count }
  1866. begin
  1867.   prevlen := -1;
  1868.   nextlen := tree[0].dl.Len;
  1869.   count := 0;
  1870.   max_count := 7;
  1871.   min_count := 4;
  1872.   if (nextlen = 0) then
  1873.   begin
  1874.     max_count := 138;
  1875.     min_count := 3;
  1876.   end;
  1877.   tree[max_code+1].dl.Len := ush($ffff); { guard }
  1878.   for n := 0 to max_code do
  1879.   begin
  1880.     curlen := nextlen;
  1881.     nextlen := tree[n+1].dl.Len;
  1882.     Inc(count);
  1883.     if (count < max_count) and (curlen = nextlen) then
  1884.       continue
  1885.     else
  1886.       if (count < min_count) then
  1887.         Inc(s.bl_tree[curlen].fc.Freq, count)
  1888.       else
  1889.         if (curlen <> 0) then
  1890.         begin
  1891.           if (curlen <> prevlen) then
  1892.             Inc(s.bl_tree[curlen].fc.Freq);
  1893.           Inc(s.bl_tree[REP_3_6].fc.Freq);
  1894.         end
  1895.         else
  1896.           if (count <= 10) then
  1897.             Inc(s.bl_tree[REPZ_3_10].fc.Freq)
  1898.           else
  1899.             Inc(s.bl_tree[REPZ_11_138].fc.Freq);
  1900.     count := 0;
  1901.     prevlen := curlen;
  1902.     if (nextlen = 0) then
  1903.     begin
  1904.       max_count := 138;
  1905.       min_count := 3;
  1906.     end
  1907.     else
  1908.       if (curlen = nextlen) then
  1909.       begin
  1910.         max_count := 6;
  1911.         min_count := 3;
  1912.       end
  1913.       else
  1914.       begin
  1915.         max_count := 7;
  1916.         min_count := 4;
  1917.       end;
  1918.   end;
  1919. end;
  1920. { ===========================================================================
  1921.   Send a literal or distance tree in compressed form, using the codes in
  1922.   bl_tree. }
  1923. {local}
  1924. procedure send_tree(var s : deflate_state;
  1925.                     var tree : array of ct_data;    { the tree to be scanned }
  1926.                     max_code : int);    { and its largest code of non zero frequency }
  1927. var
  1928.   n : int;                { iterates over all tree elements }
  1929.   prevlen : int;          { last emitted length }
  1930.   curlen : int;           { length of current code }
  1931.   nextlen : int;          { length of next code }
  1932.   count : int;            { repeat count of the current code }
  1933.   max_count : int;        { max repeat count }
  1934.   min_count : int;        { min repeat count }
  1935. begin
  1936.   prevlen := -1;
  1937.   nextlen := tree[0].dl.Len;
  1938.   count := 0;
  1939.   max_count := 7;
  1940.   min_count := 4;
  1941.   { tree[max_code+1].dl.Len := -1; }  { guard already set }
  1942.   if (nextlen = 0) then
  1943.   begin
  1944.     max_count := 138;
  1945.     min_count := 3;
  1946.   end;
  1947.   for n := 0 to max_code do
  1948.   begin
  1949.     curlen := nextlen;
  1950.     nextlen := tree[n+1].dl.Len;
  1951.     Inc(count);
  1952.     if (count < max_count) and (curlen = nextlen) then
  1953.       continue
  1954.     else
  1955.       if (count < min_count) then
  1956.       begin
  1957.         repeat
  1958.           {$ifdef DEBUG}
  1959.           Tracevvv(#13'cd '+IntToStr(curlen));
  1960.           {$ENDIF}
  1961.           send_bits(s, s.bl_tree[curlen].fc.Code, s.bl_tree[curlen].dl.Len);
  1962.           Dec(count);
  1963.         until (count = 0);
  1964.       end
  1965.       else
  1966.         if (curlen <> 0) then
  1967.         begin
  1968.           if (curlen <> prevlen) then
  1969.           begin
  1970.             {$ifdef DEBUG}
  1971.             Tracevvv(#13'cd '+IntToStr(curlen));
  1972.             {$ENDIF}
  1973.             send_bits(s, s.bl_tree[curlen].fc.Code, s.bl_tree[curlen].dl.Len);
  1974.             Dec(count);
  1975.           end;
  1976.           {$IFDEF DEBUG}
  1977.           Assert((count >= 3) and (count <= 6), ' 3_6?');
  1978.           {$ENDIF}
  1979.           {$ifdef DEBUG}
  1980.           Tracevvv(#13'cd '+IntToStr(REP_3_6));
  1981.           {$ENDIF}
  1982.           send_bits(s, s.bl_tree[REP_3_6].fc.Code, s.bl_tree[REP_3_6].dl.Len);
  1983.           send_bits(s, count-3, 2);
  1984.         end
  1985.         else
  1986.           if (count <= 10) then
  1987.           begin
  1988.             {$ifdef DEBUG}
  1989.             Tracevvv(#13'cd '+IntToStr(REPZ_3_10));
  1990.             {$ENDIF}
  1991.             send_bits(s, s.bl_tree[REPZ_3_10].fc.Code, s.bl_tree[REPZ_3_10].dl.Len);
  1992.             send_bits(s, count-3, 3);
  1993.           end
  1994.           else
  1995.           begin
  1996.             {$ifdef DEBUG}
  1997.             Tracevvv(#13'cd '+IntToStr(REPZ_11_138));
  1998.             {$ENDIF}
  1999.             send_bits(s, s.bl_tree[REPZ_11_138].fc.Code, s.bl_tree[REPZ_11_138].dl.Len);
  2000.             send_bits(s, count-11, 7);
  2001.           end;
  2002.     count := 0;
  2003.     prevlen := curlen;
  2004.     if (nextlen = 0) then
  2005.     begin
  2006.       max_count := 138;
  2007.       min_count := 3;
  2008.     end
  2009.     else
  2010.       if (curlen = nextlen) then
  2011.       begin
  2012.         max_count := 6;
  2013.         min_count := 3;
  2014.       end
  2015.       else
  2016.       begin
  2017.         max_count := 7;
  2018.         min_count := 4;
  2019.       end;
  2020.   end;
  2021. end;
  2022. { ===========================================================================
  2023.   Construct the Huffman tree for the bit lengths and return the index in
  2024.   bl_order of the last bit length code to send. }
  2025. {local}
  2026. function build_bl_tree(var s : deflate_state) : int;
  2027. var
  2028.   max_blindex : int;  { index of last bit length code of non zero freq }
  2029. begin
  2030.   { Determine the bit length frequencies for literal and distance trees }
  2031.   scan_tree(s, s.dyn_ltree, s.l_desc.max_code);
  2032.   scan_tree(s, s.dyn_dtree, s.d_desc.max_code);
  2033.   { Build the bit length tree: }
  2034.   build_tree(s, s.bl_desc);
  2035.   { opt_len now includes the length of the tree representations, except
  2036.     the lengths of the bit lengths codes and the 5+5+4 bits for the counts. }
  2037.   { Determine the number of bit length codes to send. The pkzip format
  2038.     requires that at least 4 bit length codes be sent. (appnote.txt says
  2039.     3 but the actual value used is 4.) }
  2040.   for max_blindex := BL_CODES-1 downto 3 do
  2041.   begin
  2042.     if (s.bl_tree[bl_order[max_blindex]].dl.Len <> 0) then
  2043.       break;
  2044.   end;
  2045.   { Update opt_len to include the bit length tree and counts }
  2046.   Inc(s.opt_len, 3*(max_blindex+1) + 5+5+4);
  2047.   {$ifdef DEBUG}
  2048.   Tracev(^M'dyn trees: dyn %ld, stat %ld {s.opt_len, s.static_len}');
  2049.   {$ENDIF}
  2050.   build_bl_tree := max_blindex;
  2051. end;
  2052. { ===========================================================================
  2053.   Send the header for a block using dynamic Huffman trees: the counts, the
  2054.   lengths of the bit length codes, the literal tree and the distance tree.
  2055.   IN assertion: lcodes >= 257, dcodes >= 1, blcodes >= 4. }
  2056. {local}
  2057. procedure send_all_trees(var s : deflate_state;
  2058.                          lcodes : int;
  2059.                          dcodes : int;
  2060.                          blcodes : int); { number of codes for each tree }
  2061. var
  2062.   rank : int;                    { index in bl_order }
  2063. begin
  2064.   {$IFDEF DEBUG}
  2065.   Assert ((lcodes >= 257) and (dcodes >= 1) and (blcodes >= 4),
  2066.           'not enough codes');
  2067.   Assert ((lcodes <= L_CODES) and (dcodes <= D_CODES)
  2068.           and (blcodes <= BL_CODES), 'too many codes');
  2069.   Tracev(^M'bl counts: ');
  2070.   {$ENDIF}
  2071.   send_bits(s, lcodes-257, 5); { not +255 as stated in appnote.txt }
  2072.   send_bits(s, dcodes-1,   5);
  2073.   send_bits(s, blcodes-4,  4); { not -3 as stated in appnote.txt }
  2074.   for rank := 0 to blcodes-1 do
  2075.   begin
  2076.     {$ifdef DEBUG}
  2077.     Tracev(^M'bl code '+IntToStr(bl_order[rank]));
  2078.     {$ENDIF}
  2079.     send_bits(s, s.bl_tree[bl_order[rank]].dl.Len, 3);
  2080.   end;
  2081.   {$ifdef DEBUG}
  2082.   Tracev(^M'bl tree: sent '+IntToStr(s.bits_sent));
  2083.   {$ENDIF}
  2084.   send_tree(s, s.dyn_ltree, lcodes-1); { literal tree }
  2085.   {$ifdef DEBUG}
  2086.   Tracev(^M'lit tree: sent '+IntToStr(s.bits_sent));
  2087.   {$ENDIF}
  2088.   send_tree(s, s.dyn_dtree, dcodes-1); { distance tree }
  2089.   {$ifdef DEBUG}
  2090.   Tracev(^M'dist tree: sent '+IntToStr(s.bits_sent));
  2091.   {$ENDIF}
  2092. end;
  2093. { ===========================================================================
  2094.   Flush the bit buffer and align the output on a byte boundary }
  2095. {local}
  2096. procedure bi_windup(var s : deflate_state);
  2097. begin
  2098.   if (s.bi_valid > 8) then
  2099.   begin
  2100.     {put_short(s, s.bi_buf);}
  2101.     s.pending_buf^[s.pending] := uch(s.bi_buf and $ff);
  2102.     Inc(s.pending);
  2103.     s.pending_buf^[s.pending] := uch(ush(s.bi_buf) shr 8);;
  2104.     Inc(s.pending);
  2105.   end
  2106.   else
  2107.     if (s.bi_valid > 0) then
  2108.     begin
  2109.       {put_byte(s, (Byte)s^.bi_buf);}
  2110.       s.pending_buf^[s.pending] := Byte(s.bi_buf);
  2111.       Inc(s.pending);
  2112.     end;
  2113.   s.bi_buf := 0;
  2114.   s.bi_valid := 0;
  2115. {$ifdef DEBUG}
  2116.   s.bits_sent := (s.bits_sent+7) and (not 7);
  2117. {$endif}
  2118. end;
  2119. { ===========================================================================
  2120.   Copy a stored block, storing first the length and its
  2121.   one's complement if requested. }
  2122. {local}
  2123. procedure copy_block(var s : deflate_state;
  2124.                      buf : pcharf;      { the input data }
  2125.                      len : unsigned;    { its length }
  2126.                      header : boolean); { true if block header must be written }
  2127. begin
  2128.   bi_windup(s);        { align on byte boundary }
  2129.   s.last_eob_len := 8; { enough lookahead for inflate }
  2130.   if (header) then
  2131.   begin
  2132.     {put_short(s, (ush)len);}
  2133.     s.pending_buf^[s.pending] := uch(ush(len) and $ff);
  2134.     Inc(s.pending);
  2135.     s.pending_buf^[s.pending] := uch(ush(len) shr 8);;
  2136.     Inc(s.pending);
  2137.     {put_short(s, (ush)~len);}
  2138.     s.pending_buf^[s.pending] := uch(ush(not len) and $ff);
  2139.     Inc(s.pending);
  2140.     s.pending_buf^[s.pending] := uch(ush(not len) shr 8);;
  2141.     Inc(s.pending);
  2142. {$ifdef DEBUG}
  2143.     Inc(s.bits_sent, 2*16);
  2144. {$endif}
  2145.   end;
  2146. {$ifdef DEBUG}
  2147.   Inc(s.bits_sent, ulg(len shl 3));
  2148. {$endif}
  2149.   while (len <> 0) do
  2150.   begin
  2151.     Dec(len);
  2152.     {put_byte(s, *buf++);}
  2153.     s.pending_buf^[s.pending] := buf^;
  2154.     Inc(buf);
  2155.     Inc(s.pending);
  2156.   end;
  2157. end;
  2158. { ===========================================================================
  2159.   Send a stored block }
  2160. procedure _tr_stored_block(var s : deflate_state;
  2161.                            buf : pcharf;     { input block }
  2162.                            stored_len : ulg; { length of input block }
  2163.                            eof : boolean);   { true if this is the last block for a file }
  2164. begin
  2165.   send_bits(s, (STORED_BLOCK shl 1)+ord(eof), 3);  { send block type }
  2166.   s.compressed_len := (s.compressed_len + 3 + 7) and ulg(not Long(7));
  2167.   Inc(s.compressed_len, (stored_len + 4) shl 3);
  2168.   copy_block(s, buf, unsigned(stored_len), TRUE); { with header }
  2169. end;
  2170. { ===========================================================================
  2171.   Flush the bit buffer, keeping at most 7 bits in it. }
  2172. {local}
  2173. procedure bi_flush(var s : deflate_state);
  2174. begin
  2175.   if (s.bi_valid = 16) then
  2176.   begin
  2177.     {put_short(s, s.bi_buf);}
  2178.     s.pending_buf^[s.pending] := uch(s.bi_buf and $ff);
  2179.     Inc(s.pending);
  2180.     s.pending_buf^[s.pending] := uch(ush(s.bi_buf) shr 8);;
  2181.     Inc(s.pending);
  2182.     s.bi_buf := 0;
  2183.     s.bi_valid := 0;
  2184.   end
  2185.   else
  2186.    if (s.bi_valid >= 8) then
  2187.    begin
  2188.      {put_byte(s, (Byte)s^.bi_buf);}
  2189.      s.pending_buf^[s.pending] := Byte(s.bi_buf);
  2190.      Inc(s.pending);
  2191.      s.bi_buf := s.bi_buf shr 8;
  2192.      Dec(s.bi_valid, 8);
  2193.    end;
  2194. end;
  2195. { ===========================================================================
  2196.   Send one empty static block to give enough lookahead for inflate.
  2197.   This takes 10 bits, of which 7 may remain in the bit buffer.
  2198.   The current inflate code requires 9 bits of lookahead. If the
  2199.   last two codes for the previous block (real code plus EOB) were coded
  2200.   on 5 bits or less, inflate may have only 5+3 bits of lookahead to decode
  2201.   the last real code. In this case we send two empty static blocks instead
  2202.   of one. (There are no problems if the previous block is stored or fixed.)
  2203.   To simplify the code, we assume the worst case of last real code encoded
  2204.   on one bit only. }
  2205. procedure _tr_align(var s : deflate_state);
  2206. begin
  2207.   send_bits(s, STATIC_TREES shl 1, 3);
  2208.   {$ifdef DEBUG}
  2209.   Tracevvv(#13'cd '+IntToStr(END_BLOCK));
  2210.   {$ENDIF}
  2211.   send_bits(s, static_ltree[END_BLOCK].fc.Code, static_ltree[END_BLOCK].dl.Len);
  2212.   Inc(s.compressed_len, Long(10)); { 3 for block type, 7 for EOB }
  2213.   bi_flush(s);
  2214.   { Of the 10 bits for the empty block, we have already sent
  2215.     (10 - bi_valid) bits. The lookahead for the last real code (before
  2216.     the EOB of the previous block) was thus at least one plus the length
  2217.     of the EOB plus what we have just sent of the empty static block. }
  2218.   if (1 + s.last_eob_len + 10 - s.bi_valid < 9) then
  2219.   begin
  2220.     send_bits(s, STATIC_TREES shl 1, 3);
  2221.     {$ifdef DEBUG}
  2222.     Tracevvv(#13'cd '+IntToStr(END_BLOCK));
  2223.     {$ENDIF}
  2224.     send_bits(s, static_ltree[END_BLOCK].fc.Code, static_ltree[END_BLOCK].dl.Len);
  2225.     Inc(s.compressed_len, Long(10));
  2226.     bi_flush(s);
  2227.   end;
  2228.   s.last_eob_len := 7;
  2229. end;
  2230. { ===========================================================================
  2231.   Set the data type to ASCII or BINARY, using a crude approximation:
  2232.   binary if more than 20% of the bytes are <= 6 or >= 128, ascii otherwise.
  2233.   IN assertion: the fields freq of dyn_ltree are set and the total of all
  2234.   frequencies does not exceed 64K (to fit in an int on 16 bit machines). }
  2235. {local}
  2236. procedure set_data_type(var s : deflate_state);
  2237. var
  2238.   n : int;
  2239.   ascii_freq : unsigned;
  2240.   bin_freq : unsigned;
  2241. begin
  2242.   n := 0;
  2243.   ascii_freq := 0;
  2244.   bin_freq := 0;
  2245.   while (n < 7) do
  2246.   begin
  2247.     Inc(bin_freq, s.dyn_ltree[n].fc.Freq);
  2248.     Inc(n);
  2249.   end;
  2250.   while (n < 128) do
  2251.   begin
  2252.     Inc(ascii_freq, s.dyn_ltree[n].fc.Freq);
  2253.     Inc(n);
  2254.   end;
  2255.   while (n < LITERALS) do
  2256.   begin
  2257.     Inc(bin_freq, s.dyn_ltree[n].fc.Freq);
  2258.     Inc(n);
  2259.   end;
  2260.   if (bin_freq > (ascii_freq shr 2)) then
  2261.     s.data_type := Byte(Z_BINARY)
  2262.   else
  2263.     s.data_type := Byte(Z_ASCII);
  2264. end;
  2265. { ===========================================================================
  2266.   Send the block data compressed using the given Huffman trees }
  2267. {local}
  2268. procedure compress_block(var s : deflate_state;
  2269.                          var ltree : array of ct_data;   { literal tree }
  2270.                          var dtree : array of ct_data);  { distance tree }
  2271. var
  2272.   dist : unsigned;      { distance of matched string }
  2273.   lc : int;             { match length or unmatched char (if dist == 0) }
  2274.   lx : unsigned;        { running index in l_buf }
  2275.   code : unsigned;      { the code to send }
  2276.   extra : int;          { number of extra bits to send }
  2277. begin
  2278.   lx := 0;
  2279.   if (s.last_lit <> 0) then
  2280.   repeat
  2281.     dist := s.d_buf^[lx];
  2282.     lc := s.l_buf^[lx];
  2283.     Inc(lx);
  2284.     if (dist = 0) then
  2285.     begin
  2286.       { send a literal byte }
  2287.       {$ifdef DEBUG}
  2288.       Tracevvv(#13'cd '+IntToStr(lc));
  2289.       Tracecv((lc > 31) and (lc < 128), ' '+char(lc)+' ');
  2290.       {$ENDIF}
  2291.       send_bits(s, ltree[lc].fc.Code, ltree[lc].dl.Len);
  2292.     end
  2293.     else
  2294.     begin
  2295.       { Here, lc is the match length - MIN_MATCH }
  2296.       code := _length_code[lc];
  2297.       { send the length code }
  2298.       {$ifdef DEBUG}
  2299.       Tracevvv(#13'cd '+IntToStr(code+LITERALS+1));
  2300.       {$ENDIF}
  2301.       send_bits(s, ltree[code+LITERALS+1].fc.Code, ltree[code+LITERALS+1].dl.Len);
  2302.       extra := extra_lbits[code];
  2303.       if (extra <> 0) then
  2304.       begin
  2305.         Dec(lc, base_length[code]);
  2306.         send_bits(s, lc, extra);       { send the extra length bits }
  2307.       end;
  2308.       Dec(dist); { dist is now the match distance - 1 }
  2309.       {code := d_code(dist);}
  2310.       if (dist < 256) then
  2311.         code := _dist_code[dist]
  2312.       else
  2313.         code := _dist_code[256+(dist shr 7)];
  2314.       {$IFDEF DEBUG}
  2315.       Assert (code < D_CODES, 'bad d_code');
  2316.       {$ENDIF}
  2317.       { send the distance code }
  2318.       {$ifdef DEBUG}
  2319.       Tracevvv(#13'cd '+IntToStr(code));
  2320.       {$ENDIF}
  2321.       send_bits(s, dtree[code].fc.Code, dtree[code].dl.Len);
  2322.       extra := extra_dbits[code];
  2323.       if (extra <> 0) then
  2324.       begin
  2325.         Dec(dist, base_dist[code]);
  2326.         send_bits(s, dist, extra);   { send the extra distance bits }
  2327.       end;
  2328.     end; { literal or match pair ? }
  2329.     { Check that the overlay between pending_buf and d_buf+l_buf is ok: }
  2330.     {$IFDEF DEBUG}
  2331.     Assert(s.pending < s.lit_bufsize + 2*lx, 'pendingBuf overflow');
  2332.     {$ENDIF}
  2333.   until (lx >= s.last_lit);
  2334.   {$ifdef DEBUG}
  2335.   Tracevvv(#13'cd '+IntToStr(END_BLOCK));
  2336.   {$ENDIF}
  2337.   send_bits(s, ltree[END_BLOCK].fc.Code, ltree[END_BLOCK].dl.Len);
  2338.   s.last_eob_len := ltree[END_BLOCK].dl.Len;
  2339. end;
  2340. { ===========================================================================
  2341.   Determine the best encoding for the current block: dynamic trees, static
  2342.   trees or store, and output the encoded block to the zip file. This function
  2343.   returns the total compressed length for the file so far. }
  2344. function _tr_flush_block (var s : deflate_state;
  2345.          buf : pcharf;         { input block, or NULL if too old }
  2346.          stored_len : ulg;     { length of input block }
  2347.          eof : boolean) : ulg; { true if this is the last block for a file }
  2348. var
  2349.   opt_lenb, static_lenb : ulg; { opt_len and static_len in bytes }
  2350.   max_blindex : int;  { index of last bit length code of non zero freq }
  2351.   vstatic_ltree : tstatic_ltree;
  2352.   vstatic_dtree : tstatic_dtree;
  2353. begin
  2354.   max_blindex := 0;
  2355.   { Build the Huffman trees unless a stored block is forced }
  2356.   if (s.level > 0) then
  2357.   begin
  2358.     { Check if the file is ascii or binary }
  2359.     if (s.data_type = Z_UNKNOWN) then
  2360.       set_data_type(s);
  2361.     { Construct the literal and distance trees }
  2362.     build_tree(s, s.l_desc);
  2363.     {$ifdef DEBUG}
  2364.     Tracev(^M'lit data: dyn %ld, stat %ld {s.opt_len, s.static_len}');
  2365.     {$ENDIF}
  2366.     build_tree(s, s.d_desc);
  2367.     {$ifdef DEBUG}
  2368.     Tracev(^M'dist data: dyn %ld, stat %ld {s.opt_len, s.static_len}');
  2369.     {$ENDIF}
  2370.     { At this point, opt_len and static_len are the total bit lengths of
  2371.       the compressed block data, excluding the tree representations. }
  2372.     { Build the bit length tree for the above two trees, and get the index
  2373.       in bl_order of the last bit length code to send. }
  2374.     max_blindex := build_bl_tree(s);
  2375.     { Determine the best encoding. Compute first the block length in bytes}
  2376.     opt_lenb := (s.opt_len+3+7) shr 3;
  2377.     static_lenb := (s.static_len+3+7) shr 3;
  2378.     {$ifdef DEBUG}
  2379.     Tracev(^M'opt %lu(%lu) stat %lu(%lu) stored %lu lit %u '+
  2380.     '{opt_lenb, s.opt_len, static_lenb, s.static_len, stored_len,'+
  2381.     's.last_lit}');
  2382.     {$ENDIF}
  2383.     if (static_lenb <= opt_lenb) then
  2384.       opt_lenb := static_lenb;
  2385.   end
  2386.   else
  2387.   begin
  2388.     {$IFDEF DEBUG}
  2389.     Assert(buf <> pcharf(NIL), 'lost buf');
  2390.     {$ENDIF}
  2391.     static_lenb := stored_len + 5;
  2392.     opt_lenb := static_lenb;        { force a stored block }
  2393.   end;
  2394.   { If compression failed and this is the first and last block,
  2395.     and if the .zip file can be seeked (to rewrite the local header),
  2396.     the whole file is transformed into a stored file:  }
  2397. {$ifdef STORED_FILE_OK}
  2398. {$ifdef FORCE_STORED_FILE}
  2399.   if eof and (s.compressed_len = Long(0)) then
  2400.   begin { force stored file }
  2401. {$else}
  2402.   if (stored_len <= opt_lenb) and eof and (s.compressed_len=Long(0))
  2403.      and seekable()) do
  2404.   begin
  2405. {$endif}
  2406.     { Since LIT_BUFSIZE <= 2*WSIZE, the input data must be there: }
  2407.     if (buf = pcharf(0)) then
  2408.       error ('block vanished');
  2409.     copy_block(buf, unsigned(stored_len), 0); { without header }
  2410.     s.compressed_len := stored_len shl 3;
  2411.     s.method := STORED;
  2412.   end
  2413.   else
  2414. {$endif} { STORED_FILE_OK }
  2415. {$ifdef FORCE_STORED}
  2416.   if (buf <> pchar(0)) then
  2417.   begin { force stored block }
  2418. {$else}
  2419.   if (stored_len+4 <= opt_lenb) and (buf <> pcharf(0)) then
  2420.   begin
  2421.                      { 4: two words for the lengths }
  2422. {$endif}
  2423.     { The test buf <> NULL is only necessary if LIT_BUFSIZE > WSIZE.
  2424.       Otherwise we can't have processed more than WSIZE input bytes since
  2425.       the last block flush, because compression would have been
  2426.       successful. If LIT_BUFSIZE <= WSIZE, it is never too late to
  2427.       transform a block into a stored block. }
  2428.     _tr_stored_block(s, buf, stored_len, eof);
  2429. {$ifdef FORCE_STATIC}
  2430.   end
  2431.   else
  2432.     if (static_lenb >= 0) then
  2433.     begin { force static trees }
  2434. {$else}
  2435.   end
  2436.   else
  2437.     if (static_lenb = opt_lenb) then
  2438.     begin
  2439. {$endif}
  2440.       send_bits(s, (STATIC_TREES shl 1)+ord(eof), 3);
  2441.       vstatic_ltree := static_ltree;
  2442.       vstatic_dtree := static_dtree;
  2443.       compress_block(s, vstatic_ltree, vstatic_dtree);
  2444.       Inc(s.compressed_len, 3 + s.static_len);
  2445.     end
  2446.     else
  2447.     begin
  2448.       send_bits(s, (DYN_TREES shl 1)+ord(eof), 3);
  2449.       send_all_trees(s, s.l_desc.max_code+1, s.d_desc.max_code+1,
  2450.                      max_blindex+1);
  2451.       compress_block(s, s.dyn_ltree, s.dyn_dtree);
  2452.       Inc(s.compressed_len, 3 + s.opt_len);
  2453.     end;
  2454.   {$ifdef DEBUG}
  2455.   Assert (s.compressed_len = s.bits_sent, 'bad compressed size');
  2456.   {$ENDIF}
  2457.   init_block(s);
  2458.   if (eof) then
  2459.   begin
  2460.     bi_windup(s);
  2461.     Inc(s.compressed_len, 7);  { align on byte boundary }
  2462.   end;
  2463.   {$ifdef DEBUG}
  2464.   Tracev(#13'comprlen %lu(%lu) {s.compressed_len shr 3,'+
  2465.          's.compressed_len-7*ord(eof)}');
  2466.   {$ENDIF}
  2467.   _tr_flush_block := s.compressed_len shr 3;
  2468. end;
  2469. { ===========================================================================
  2470.   Save the match info and tally the frequency counts. Return true if
  2471.   the current block must be flushed. }
  2472. function _tr_tally (var s : deflate_state;
  2473.    dist : unsigned;          { distance of matched string }
  2474.    lc : unsigned) : boolean; { match length-MIN_MATCH or unmatched char (if dist=0) }
  2475. var
  2476.   {$IFDEF DEBUG}
  2477.   MAX_DIST : ush;
  2478.   {$ENDIF}
  2479.   code : ush;
  2480. {$ifdef TRUNCATE_BLOCK}
  2481. var
  2482.   out_length : ulg;
  2483.   in_length : ulg;
  2484.   dcode : int;
  2485. {$endif}
  2486. begin
  2487.   s.d_buf^[s.last_lit] := ush(dist);
  2488.   s.l_buf^[s.last_lit] := uch(lc);
  2489.   Inc(s.last_lit);
  2490.   if (dist = 0) then
  2491.   begin
  2492.     { lc is the unmatched char }
  2493.     Inc(s.dyn_ltree[lc].fc.Freq);
  2494.   end
  2495.   else
  2496.   begin
  2497.     Inc(s.matches);
  2498.     { Here, lc is the match length - MIN_MATCH }
  2499.     Dec(dist);             { dist := match distance - 1 }
  2500.     {macro d_code(dist)}
  2501.     if (dist) < 256 then
  2502.       code := _dist_code[dist]
  2503.     else
  2504.       code := _dist_code[256+(dist shr 7)];
  2505.     {$IFDEF DEBUG}
  2506. {macro  MAX_DIST(s) <=> ((s)^.w_size-MIN_LOOKAHEAD)
  2507.    In order to simplify the code, particularly on 16 bit machines, match
  2508.    distances are limited to MAX_DIST instead of WSIZE. }
  2509.     MAX_DIST := ush(s.w_size-MIN_LOOKAHEAD);
  2510.     Assert((dist < ush(MAX_DIST)) and
  2511.            (ush(lc) <= ush(MAX_MATCH-MIN_MATCH)) and
  2512.            (ush(code) < ush(D_CODES)),  '_tr_tally: bad match');
  2513.     {$ENDIF}
  2514.     Inc(s.dyn_ltree[_length_code[lc]+LITERALS+1].fc.Freq);
  2515.     {s.dyn_dtree[d_code(dist)].Freq++;}
  2516.     Inc(s.dyn_dtree[code].fc.Freq);
  2517.   end;
  2518. {$ifdef TRUNCATE_BLOCK}
  2519.   { Try to guess if it is profitable to stop the current block here }
  2520.   if (s.last_lit and $1fff = 0) and (s.level > 2) then
  2521.   begin
  2522.     { Compute an upper bound for the compressed length }
  2523.     out_length := ulg(s.last_lit)*Long(8);
  2524.     in_length := ulg(long(s.strstart) - s.block_start);
  2525.     for dcode := 0 to D_CODES-1 do
  2526.     begin
  2527.       Inc(out_length, ulg(s.dyn_dtree[dcode].fc.Freq *
  2528.             (Long(5)+extra_dbits[dcode])) );
  2529.     end;
  2530.     out_length := out_length shr 3;
  2531.     if (s.matches < s.last_lit div 2) and (out_length < in_length div 2) then
  2532.     begin
  2533.       _tr_tally := TRUE;
  2534.       exit;
  2535.     end;
  2536.   end;
  2537. {$endif}
  2538.   _tr_tally := (s.last_lit = s.lit_bufsize-1);
  2539.   { We avoid equality with lit_bufsize because of wraparound at 64K
  2540.     on 16 bit machines and because stored blocks are restricted to
  2541.     64K-1 bytes. }
  2542. end;
  2543. end.