diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:20:29 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:20:29 -0700 |
commit | 14763ac7c6c03bca62c39e35c03cf5bfc7728802 (patch) | |
tree | f1055d11ef7b282b698ce7c40e1a9c061413cbdf /deflate.h | |
parent | c34c1fcbb19852ca35216ad66276f4f86af3fc22 (diff) | |
download | zlib-14763ac7c6c03bca62c39e35c03cf5bfc7728802.tar.gz zlib-14763ac7c6c03bca62c39e35c03cf5bfc7728802.tar.bz2 zlib-14763ac7c6c03bca62c39e35c03cf5bfc7728802.zip |
zlib 1.1.3v1.1.3
Diffstat (limited to 'deflate.h')
-rw-r--r-- | deflate.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -230,12 +230,12 @@ typedef struct internal_state { | |||
230 | 230 | ||
231 | ulg opt_len; /* bit length of current block with optimal trees */ | 231 | ulg opt_len; /* bit length of current block with optimal trees */ |
232 | ulg static_len; /* bit length of current block with static trees */ | 232 | ulg static_len; /* bit length of current block with static trees */ |
233 | ulg compressed_len; /* total bit length of compressed file */ | ||
234 | uInt matches; /* number of string matches in current block */ | 233 | uInt matches; /* number of string matches in current block */ |
235 | int last_eob_len; /* bit length of EOB code for last block */ | 234 | int last_eob_len; /* bit length of EOB code for last block */ |
236 | 235 | ||
237 | #ifdef DEBUG | 236 | #ifdef DEBUG |
238 | ulg bits_sent; /* bit length of the compressed data */ | 237 | ulg compressed_len; /* total bit length of compressed file mod 2^32 */ |
238 | ulg bits_sent; /* bit length of compressed data sent mod 2^32 */ | ||
239 | #endif | 239 | #endif |
240 | 240 | ||
241 | ush bi_buf; | 241 | ush bi_buf; |
@@ -268,7 +268,7 @@ typedef struct internal_state { | |||
268 | /* in trees.c */ | 268 | /* in trees.c */ |
269 | void _tr_init OF((deflate_state *s)); | 269 | void _tr_init OF((deflate_state *s)); |
270 | int _tr_tally OF((deflate_state *s, unsigned dist, unsigned lc)); | 270 | int _tr_tally OF((deflate_state *s, unsigned dist, unsigned lc)); |
271 | ulg _tr_flush_block OF((deflate_state *s, charf *buf, ulg stored_len, | 271 | void _tr_flush_block OF((deflate_state *s, charf *buf, ulg stored_len, |
272 | int eof)); | 272 | int eof)); |
273 | void _tr_align OF((deflate_state *s)); | 273 | void _tr_align OF((deflate_state *s)); |
274 | void _tr_stored_block OF((deflate_state *s, charf *buf, ulg stored_len, | 274 | void _tr_stored_block OF((deflate_state *s, charf *buf, ulg stored_len, |