| 336 | |
| 337 | # if defined(WITH_ZLIB) || defined(WITH_MINIZ) |
| 338 | static void CopyToDeflate(Stream& input, Stream& output, std::int64_t& uncompressedSize) |
| 339 | { |
| 340 | DeflateWriter dw(output); |
| 341 | uncompressedSize = input.CopyTo(dw); |
| 342 | } |
| 343 | # endif |
| 344 | # if defined(WITH_LZ4) |
| 345 | static void CopyToLz4(Stream& input, Stream& output, std::int64_t& uncompressedSize) |