#include <stddef.h>
Go to the source code of this file.
|
enum | MLZ4F_blockSizeID_t {
MLZ4F_default =0
, MLZ4F_max64KB =4
, MLZ4F_max256KB =5
, MLZ4F_max1MB =6
,
MLZ4F_max4MB =7
, MLZ4F_default =0
, MLZ4F_max64KB =4
, MLZ4F_max256KB =5
,
MLZ4F_max1MB =6
, MLZ4F_max4MB =7
} |
|
enum | MLZ4F_blockMode_t { MLZ4F_blockLinked =0
, MLZ4F_blockIndependent
, MLZ4F_blockLinked =0
, MLZ4F_blockIndependent
} |
|
enum | MLZ4F_contentChecksum_t { MLZ4F_noContentChecksum =0
, MLZ4F_contentChecksumEnabled
, MLZ4F_noContentChecksum =0
, MLZ4F_contentChecksumEnabled
} |
|
enum | MLZ4F_frameType_t { MLZ4F_frame =0
, MLZ4F_skippableFrame
, MLZ4F_frame =0
, MLZ4F_skippableFrame
} |
|
|
unsigned | MLZ4F_isError (MLZ4F_errorCode_t code) |
|
const char * | MLZ4F_getErrorName (MLZ4F_errorCode_t code) |
|
size_t | MLZ4F_compressFrameBound (size_t srcSize, const MLZ4F_preferences_t *preferencesPtr) |
|
size_t | MLZ4F_compressFrame (void *dstBuffer, size_t dstMaxSize, const void *srcBuffer, size_t srcSize, const MLZ4F_preferences_t *preferencesPtr) |
|
MLZ4F_errorCode_t | MLZ4F_createCompressionContext (MLZ4F_compressionContext_t *cctxPtr, unsigned version) |
|
MLZ4F_errorCode_t | MLZ4F_freeCompressionContext (MLZ4F_compressionContext_t cctx) |
|
size_t | MLZ4F_compressBegin (MLZ4F_compressionContext_t cctx, void *dstBuffer, size_t dstMaxSize, const MLZ4F_preferences_t *prefsPtr) |
|
size_t | MLZ4F_compressBound (size_t srcSize, const MLZ4F_preferences_t *prefsPtr) |
|
size_t | MLZ4F_compressUpdate (MLZ4F_compressionContext_t cctx, void *dstBuffer, size_t dstMaxSize, const void *srcBuffer, size_t srcSize, const MLZ4F_compressOptions_t *cOptPtr) |
|
size_t | MLZ4F_flush (MLZ4F_compressionContext_t cctx, void *dstBuffer, size_t dstMaxSize, const MLZ4F_compressOptions_t *cOptPtr) |
|
size_t | MLZ4F_compressEnd (MLZ4F_compressionContext_t cctx, void *dstBuffer, size_t dstMaxSize, const MLZ4F_compressOptions_t *cOptPtr) |
|
MLZ4F_errorCode_t | MLZ4F_createDecompressionContext (MLZ4F_decompressionContext_t *dctxPtr, unsigned version) |
|
MLZ4F_errorCode_t | MLZ4F_freeDecompressionContext (MLZ4F_decompressionContext_t dctx) |
|
size_t | MLZ4F_getFrameInfo (MLZ4F_decompressionContext_t dctx, MLZ4F_frameInfo_t *frameInfoPtr, const void *srcBuffer, size_t *srcSizePtr) |
|
size_t | MLZ4F_decompress (MLZ4F_decompressionContext_t dctx, void *dstBuffer, size_t *dstSizePtr, const void *srcBuffer, size_t *srcSizePtr, const MLZ4F_decompressOptions_t *dOptPtr) |
|
◆ MLZ4F_OBSOLETE_ENUM
#define MLZ4F_OBSOLETE_ENUM |
( |
|
x | ) |
,x |
◆ MLZ4F_VERSION
#define MLZ4F_VERSION 100 |
◆ blockMode_t
◆ blockSizeID_t
◆ contentChecksum_t
◆ frameType_t
◆ MLZ4F_compressionContext_t
◆ MLZ4F_decompressionContext_t
◆ MLZ4F_errorCode_t
◆ MLZ4F_blockMode_t
Enumerator |
---|
MLZ4F_blockLinked | |
MLZ4F_blockIndependent | |
MLZ4F_blockLinked | |
MLZ4F_blockIndependent | |
Definition at line 84 of file mlz4frame.h.
◆ MLZ4F_blockSizeID_t
Enumerator |
---|
MLZ4F_default | |
MLZ4F_max64KB | |
MLZ4F_max256KB | |
MLZ4F_max1MB | |
MLZ4F_max4MB | |
MLZ4F_default | |
MLZ4F_max64KB | |
MLZ4F_max256KB | |
MLZ4F_max1MB | |
MLZ4F_max4MB | |
Definition at line 72 of file mlz4frame.h.
◆ MLZ4F_contentChecksum_t
Enumerator |
---|
MLZ4F_noContentChecksum | |
MLZ4F_contentChecksumEnabled | |
MLZ4F_noContentChecksum | |
MLZ4F_contentChecksumEnabled | |
Definition at line 91 of file mlz4frame.h.
◆ MLZ4F_frameType_t
Enumerator |
---|
MLZ4F_frame | |
MLZ4F_skippableFrame | |
MLZ4F_frame | |
MLZ4F_skippableFrame | |
Definition at line 98 of file mlz4frame.h.
◆ MLZ4F_compressBegin()
◆ MLZ4F_compressBound()
◆ MLZ4F_compressEnd()
◆ MLZ4F_compressFrame()
size_t MLZ4F_compressFrame |
( |
void * |
dstBuffer, |
|
|
size_t |
dstMaxSize, |
|
|
const void * |
srcBuffer, |
|
|
size_t |
srcSize, |
|
|
const MLZ4F_preferences_t * |
preferencesPtr |
|
) |
| |
◆ MLZ4F_compressFrameBound()
◆ MLZ4F_compressUpdate()
◆ MLZ4F_createCompressionContext()
◆ MLZ4F_createDecompressionContext()
◆ MLZ4F_decompress()
◆ MLZ4F_flush()
◆ MLZ4F_freeCompressionContext()
◆ MLZ4F_freeDecompressionContext()
◆ MLZ4F_getErrorName()
◆ MLZ4F_getFrameInfo()
◆ MLZ4F_isError()