summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2015-04-24 13:28:06 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2015-04-24 13:28:06 (GMT)
commitc9cbb8fc069f93708cbc6a053cf06f8c965f28e5 (patch)
treea0ac09237a7aa3cbf432991a94dda4477cbab019
parentef55dfb000a9150cb9baee80e00f22c2dcddaada (diff)
downloadlz4-c9cbb8fc069f93708cbc6a053cf06f8c965f28e5.zip
lz4-c9cbb8fc069f93708cbc6a053cf06f8c965f28e5.tar.gz
lz4-c9cbb8fc069f93708cbc6a053cf06f8c965f28e5.tar.bz2
Increased aligment requirement for lz4frame context pointer
-rw-r--r--lib/lz4frame.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/lz4frame.h b/lib/lz4frame.h
index 4698c4b..6c4dbed 100644
--- a/lib/lz4frame.h
+++ b/lib/lz4frame.h
@@ -132,7 +132,7 @@ size_t LZ4F_compressFrameBound(size_t srcSize, const LZ4F_preferences_t* prefere
size_t LZ4F_compressFrame(void* dstBuffer, size_t dstMaxSize, const void* srcBuffer, size_t srcSize, const LZ4F_preferences_t* preferencesPtr);
/* LZ4F_compressFrame()
- * Compress an entire srcBuffer into a valid LZ4 frame, as defined by specification v1.5
+ * Compress an entire srcBuffer into a valid LZ4 frame, as defined by specification v1.5.1
* The most important rule is that dstBuffer MUST be large enough (dstMaxSize) to ensure compression completion even in worst case.
* You can get the minimum value of dstMaxSize by using LZ4F_compressFrameBound()
* If this condition is not respected, LZ4F_compressFrame() will fail (result is an errorCode)
@@ -146,7 +146,7 @@ size_t LZ4F_compressFrame(void* dstBuffer, size_t dstMaxSize, const void* srcBuf
/**********************************
* Advanced compression functions
* ********************************/
-typedef size_t* LZ4F_compressionContext_t;
+typedef long long* LZ4F_compressionContext_t; /* must be aligned on 8-bytes */
typedef struct {
unsigned stableSrc; /* 1 == src content will remain available on future calls to LZ4F_compress(); avoid saving src content within tmp buffer as future dictionary */
@@ -226,7 +226,7 @@ size_t LZ4F_compressEnd(LZ4F_compressionContext_t cctx, void* dstBuffer, size_t
* Decompression functions
* *********************************/
-typedef size_t* LZ4F_decompressionContext_t;
+typedef long long* LZ4F_decompressionContext_t; /* must be aligned on 8-bytes */
typedef struct {
unsigned stableDst; /* guarantee that decompressed data will still be there on next function calls (avoid storage into tmp buffers) */