| 343 | # endif |
| 344 | # if defined(WITH_LZ4) |
| 345 | static void CopyToLz4(Stream& input, Stream& output, std::int64_t& uncompressedSize) |
| 346 | { |
| 347 | Lz4Writer dw(output); |
| 348 | uncompressedSize = input.CopyTo(dw); |
| 349 | } |
| 350 | # endif |
| 351 | # if defined(WITH_LZMA2) |
| 352 | static void CopyToLzma2(Stream& input, Stream& output, std::int64_t& uncompressedSize) |