| 353 | } |
| 354 | |
| 355 | int64_t MaxCompressedLen(int64_t input_len, |
| 356 | const uint8_t* ARROW_ARG_UNUSED(input)) override { |
| 357 | return LZ4_compressBound(static_cast<int>(input_len)); |
| 358 | } |
| 359 | |
| 360 | Result<int64_t> Compress(int64_t input_len, const uint8_t* input, |
| 361 | int64_t output_buffer_len, uint8_t* output_buffer) override { |
no outgoing calls