(byte[] input_data)
| 580 | } |
| 581 | |
| 582 | private static byte[] zstd_decompress(byte[] input_data) throws Exception { |
| 583 | ByteArrayInputStream in = new ByteArrayInputStream(input_data); |
| 584 | ZstdCompressorInputStream zstdIn = new ZstdCompressorInputStream(in); |
| 585 | return IOUtils.toByteArray(zstdIn); |
| 586 | } |
| 587 | |
| 588 | private static byte[] zstd_compress(byte[] input_data) throws Exception { |
| 589 | ByteArrayOutputStream out = new ByteArrayOutputStream(); |
no test coverage detected