| 46 | constexpr int kLz4MinCompressionLevel = 1; |
| 47 | |
| 48 | static Status LZ4Error(LZ4F_errorCode_t ret, const char* prefix_msg) { |
| 49 | return Status::IOError(prefix_msg, LZ4F_getErrorName(ret)); |
| 50 | } |
| 51 | |
| 52 | static LZ4F_preferences_t DefaultPreferences() { |
| 53 | LZ4F_preferences_t prefs; |
no test coverage detected