<brieflz.h> - blz_max_packed_size
size_t blz_max_packed_size( size_t input_size );
Computes the maximum possible compressed size possible when
compressing input_size bytes of incompressible data.
The current code returns
(input_size + (input_size / 8) + 64) .
- Parameters:
-
input_size - the length of the uncompressed data in
bytes.
- Returns:
-
the maximum possible size of the compressed data.
|