diff options
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, |