Package | Description |
---|---|
org.bytedeco.lz4.global |
Modifier and Type | Method and Description |
---|---|
static long |
lz4.LZ4F_compressBegin(LZ4FCompressionContext cctx,
Pointer dstBuffer,
long dstCapacity,
LZ4FPreferences prefsPtr)
LZ4F_compressBegin() :
will write the frame header into dstBuffer.
|
static long |
lz4.LZ4F_compressBegin(LZ4FCompressionContext cctx,
Pointer dstBuffer,
long dstCapacity,
LZ4FPreferences prefsPtr)
LZ4F_compressBegin() :
will write the frame header into dstBuffer.
|
static long |
lz4.LZ4F_compressEnd(LZ4FCompressionContext cctx,
Pointer dstBuffer,
long dstCapacity,
LZ4FCompressOptions cOptPtr)
LZ4F_compressEnd() :
To properly finish an LZ4 frame, invoke LZ4F_compressEnd().
|
static long |
lz4.LZ4F_compressEnd(LZ4FCompressionContext cctx,
Pointer dstBuffer,
long dstCapacity,
LZ4FCompressOptions cOptPtr)
LZ4F_compressEnd() :
To properly finish an LZ4 frame, invoke LZ4F_compressEnd().
|
static long |
lz4.LZ4F_compressUpdate(LZ4FCompressionContext cctx,
Pointer dstBuffer,
long dstCapacity,
Pointer srcBuffer,
long srcSize,
LZ4FCompressOptions cOptPtr)
LZ4F_compressUpdate() :
LZ4F_compressUpdate() can be called repetitively to compress as much data as necessary.
|
static long |
lz4.LZ4F_compressUpdate(LZ4FCompressionContext cctx,
Pointer dstBuffer,
long dstCapacity,
Pointer srcBuffer,
long srcSize,
LZ4FCompressOptions cOptPtr)
LZ4F_compressUpdate() :
LZ4F_compressUpdate() can be called repetitively to compress as much data as necessary.
|
static long |
lz4.LZ4F_createCompressionContext(LZ4FCompressionContext cctxPtr,
int version) |
static long |
lz4.LZ4F_createCompressionContext(LZ4FCompressionContext cctxPtr,
int version) |
static long |
lz4.LZ4F_flush(LZ4FCompressionContext cctx,
Pointer dstBuffer,
long dstCapacity,
LZ4FCompressOptions cOptPtr)
LZ4F_flush() :
When data must be generated and sent immediately, without waiting for a block to be completely filled,
it's possible to call LZ4_flush().
|
static long |
lz4.LZ4F_flush(LZ4FCompressionContext cctx,
Pointer dstBuffer,
long dstCapacity,
LZ4FCompressOptions cOptPtr)
LZ4F_flush() :
When data must be generated and sent immediately, without waiting for a block to be completely filled,
it's possible to call LZ4_flush().
|
static long |
lz4.LZ4F_freeCompressionContext(LZ4FCompressionContext cctx) |
static long |
lz4.LZ4F_freeCompressionContext(LZ4FCompressionContext cctx) |
Copyright © 2022. All rights reserved.