@@ -71,10 +71,6 @@ Data read_file_data_or_exit(const char* name) {
71
71
return data;
72
72
}
73
73
74
- size_t zlib_estimate_compressed_size (size_t input_size) {
75
- return compressBound (input_size);
76
- }
77
-
78
74
enum zlib_wrapper {
79
75
kWrapperNONE ,
80
76
kWrapperZLIB ,
@@ -128,10 +124,6 @@ void zlib_compress(
128
124
std::string* output,
129
125
bool resize_output = false )
130
126
{
131
- if (resize_output)
132
- output->resize (zlib_estimate_compressed_size (input_size));
133
- size_t output_size = output->size ();
134
-
135
127
z_stream stream;
136
128
memset (&stream, 0 , sizeof (stream));
137
129
@@ -140,6 +132,11 @@ void zlib_compress(
140
132
if (result != Z_OK)
141
133
error_exit (" deflateInit2 failed" , result);
142
134
135
+ if (resize_output) {
136
+ output->resize (deflateBound (&stream, input_size));
137
+ }
138
+ size_t output_size = output->size ();
139
+
143
140
stream.next_out = (Bytef*)string_data (output);
144
141
stream.avail_out = (uInt)output_size;
145
142
stream.next_in = (z_const Bytef*)input;
@@ -299,19 +296,14 @@ void zlib_file(const char* name,
299
296
300
297
// Pre-grow the output buffer so we don't measure string resize time.
301
298
for (int b = 0 ; b < blocks; ++b)
302
- compressed[b]. resize ( zlib_estimate_compressed_size (block_size) );
299
+ zlib_compress (type, input[b], input_length[b], & compressed[b], true );
303
300
304
301
auto start = now ();
305
302
for (int b = 0 ; b < blocks; ++b)
306
303
for (int r = 0 ; r < repeats; ++r)
307
304
zlib_compress (type, input[b], input_length[b], &compressed[b]);
308
305
ctime [run] = std::chrono::duration<double >(now () - start).count ();
309
306
310
- // Compress again, resizing compressed, so we don't leave junk at the
311
- // end of the compressed string that could confuse zlib_uncompress().
312
- for (int b = 0 ; b < blocks; ++b)
313
- zlib_compress (type, input[b], input_length[b], &compressed[b], true );
314
-
315
307
for (int b = 0 ; b < blocks; ++b)
316
308
output[b].resize (input_length[b]);
317
309
0 commit comments