|
byteme
C++ wrappers for buffered inputs
|
Options for the ZlibBufferWriter constructor.
More...
#include <ZlibBufferWriter.hpp>
Public Attributes | |
| int | mode = 2 |
| int | compression_level = 6 |
| std::size_t | buffer_size = cap<std::size_t>(65536) |
Options for the ZlibBufferWriter constructor.
| std::size_t byteme::ZlibBufferWriterOptions::buffer_size = cap<std::size_t>(65536) |
Size of the buffer to use when reading from disk. Larger values usually reduce computational time at the cost of increased memory usage.
| int byteme::ZlibBufferWriterOptions::compression_level = 6 |
Compression level, from 1 to 9. Larger values improve compression at the cost of speed.
| int byteme::ZlibBufferWriterOptions::mode = 2 |
Compression of the stream - DEFLATE (0), Zlib (1) or Gzip (2).