extlz4 0.2.5 → 0.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * LZ4 - Fast LZ compression algorithm
3
3
  * Header File
4
- * Copyright (C) 2011-2017, Yann Collet.
4
+ * Copyright (C) 2011-present, Yann Collet.
5
5
 
6
6
  BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
7
7
 
@@ -46,24 +46,28 @@ extern "C" {
46
46
  /**
47
47
  Introduction
48
48
 
49
- LZ4 is lossless compression algorithm, providing compression speed at 400 MB/s per core,
49
+ LZ4 is lossless compression algorithm, providing compression speed at 500 MB/s per core,
50
50
  scalable with multi-cores CPU. It features an extremely fast decoder, with speed in
51
51
  multiple GB/s per core, typically reaching RAM speed limits on multi-core systems.
52
52
 
53
53
  The LZ4 compression library provides in-memory compression and decompression functions.
54
+ It gives full buffer control to user.
54
55
  Compression can be done in:
55
56
  - a single step (described as Simple Functions)
56
57
  - a single step, reusing a context (described in Advanced Functions)
57
58
  - unbounded multiple steps (described as Streaming compression)
58
59
 
59
- lz4.h provides block compression functions. It gives full buffer control to user.
60
- Decompressing an lz4-compressed block also requires metadata (such as compressed size).
61
- Each application is free to encode such metadata in whichever way it wants.
60
+ lz4.h generates and decodes LZ4-compressed blocks (doc/lz4_Block_format.md).
61
+ Decompressing a block requires additional metadata, such as its compressed size.
62
+ Each application is free to encode and pass such metadata in whichever way it wants.
62
63
 
63
- An additional format, called LZ4 frame specification (doc/lz4_Frame_format.md),
64
- take care of encoding standard metadata alongside LZ4-compressed blocks.
65
- If your application requires interoperability, it's recommended to use it.
66
- A library is provided to take care of it, see lz4frame.h.
64
+ lz4.h only handle blocks, it can not generate Frames.
65
+
66
+ Blocks are different from Frames (doc/lz4_Frame_format.md).
67
+ Frames bundle both blocks and metadata in a specified manner.
68
+ This are required for compressed data to be self-contained and portable.
69
+ Frame format is delivered through a companion API, declared in lz4frame.h.
70
+ Note that the `lz4` CLI can only manage frames.
67
71
  */
68
72
 
69
73
  /*^***************************************************************
@@ -92,7 +96,7 @@ extern "C" {
92
96
 
93
97
  /*------ Version ------*/
94
98
  #define LZ4_VERSION_MAJOR 1 /* for breaking interface changes */
95
- #define LZ4_VERSION_MINOR 8 /* for new (non-breaking) interface capabilities */
99
+ #define LZ4_VERSION_MINOR 9 /* for new (non-breaking) interface capabilities */
96
100
  #define LZ4_VERSION_RELEASE 0 /* for tweaks, bug-fixes, or development */
97
101
 
98
102
  #define LZ4_VERSION_NUMBER (LZ4_VERSION_MAJOR *100*100 + LZ4_VERSION_MINOR *100 + LZ4_VERSION_RELEASE)
@@ -102,8 +106,8 @@ extern "C" {
102
106
  #define LZ4_EXPAND_AND_QUOTE(str) LZ4_QUOTE(str)
103
107
  #define LZ4_VERSION_STRING LZ4_EXPAND_AND_QUOTE(LZ4_LIB_VERSION)
104
108
 
105
- LZ4LIB_API int LZ4_versionNumber (void); /**< library version number; to be used when checking dll version */
106
- LZ4LIB_API const char* LZ4_versionString (void); /**< library version string; to be used when checking dll version */
109
+ LZ4LIB_API int LZ4_versionNumber (void); /**< library version number; useful to check dll version */
110
+ LZ4LIB_API const char* LZ4_versionString (void); /**< library version string; useful to check dll version */
107
111
 
108
112
 
109
113
  /*-************************************
@@ -112,14 +116,15 @@ LZ4LIB_API const char* LZ4_versionString (void); /**< library version string;
112
116
  /*!
113
117
  * LZ4_MEMORY_USAGE :
114
118
  * Memory usage formula : N->2^N Bytes (examples : 10 -> 1KB; 12 -> 4KB ; 16 -> 64KB; 20 -> 1MB; etc.)
115
- * Increasing memory usage improves compression ratio
116
- * Reduced memory usage can improve speed, due to cache effect
119
+ * Increasing memory usage improves compression ratio.
120
+ * Reduced memory usage may improve speed, thanks to better cache locality.
117
121
  * Default value is 14, for 16KB, which nicely fits into Intel x86 L1 cache
118
122
  */
119
123
  #ifndef LZ4_MEMORY_USAGE
120
124
  # define LZ4_MEMORY_USAGE 14
121
125
  #endif
122
126
 
127
+
123
128
  /*-************************************
124
129
  * Simple Functions
125
130
  **************************************/
@@ -128,24 +133,24 @@ LZ4LIB_API const char* LZ4_versionString (void); /**< library version string;
128
133
  into already allocated 'dst' buffer of size 'dstCapacity'.
129
134
  Compression is guaranteed to succeed if 'dstCapacity' >= LZ4_compressBound(srcSize).
130
135
  It also runs faster, so it's a recommended setting.
131
- If the function cannot compress 'src' into a limited 'dst' budget,
136
+ If the function cannot compress 'src' into a more limited 'dst' budget,
132
137
  compression stops *immediately*, and the function result is zero.
133
- As a consequence, 'dst' content is not valid.
134
- This function never writes outside 'dst' buffer, nor read outside 'source' buffer.
135
- srcSize : supported max value is LZ4_MAX_INPUT_VALUE
136
- dstCapacity : full or partial size of buffer 'dst' (which must be already allocated)
137
- return : the number of bytes written into buffer 'dst' (necessarily <= dstCapacity)
138
- or 0 if compression fails */
138
+ In which case, 'dst' content is undefined (invalid).
139
+ srcSize : max supported value is LZ4_MAX_INPUT_SIZE.
140
+ dstCapacity : size of buffer 'dst' (which must be already allocated)
141
+ @return : the number of bytes written into buffer 'dst' (necessarily <= dstCapacity)
142
+ or 0 if compression fails
143
+ Note : This function is protected against buffer overflow scenarios (never writes outside 'dst' buffer, nor read outside 'source' buffer).
144
+ */
139
145
  LZ4LIB_API int LZ4_compress_default(const char* src, char* dst, int srcSize, int dstCapacity);
140
146
 
141
147
  /*! LZ4_decompress_safe() :
142
148
  compressedSize : is the exact complete size of the compressed block.
143
149
  dstCapacity : is the size of destination buffer, which must be already allocated.
144
- return : the number of bytes decompressed into destination buffer (necessarily <= dstCapacity)
150
+ @return : the number of bytes decompressed into destination buffer (necessarily <= dstCapacity)
145
151
  If destination buffer is not large enough, decoding will stop and output an error code (negative value).
146
152
  If the source stream is detected malformed, the function will stop decoding and return a negative result.
147
- This function is protected against buffer overflow exploits, including malicious data packets.
148
- It never writes outside output buffer, nor reads outside input buffer.
153
+ Note : This function is protected against malicious data packets (never writes outside 'dst' buffer, nor read outside 'source' buffer).
149
154
  */
150
155
  LZ4LIB_API int LZ4_decompress_safe (const char* src, char* dst, int compressedSize, int dstCapacity);
151
156
 
@@ -156,194 +161,317 @@ LZ4LIB_API int LZ4_decompress_safe (const char* src, char* dst, int compressedSi
156
161
  #define LZ4_MAX_INPUT_SIZE 0x7E000000 /* 2 113 929 216 bytes */
157
162
  #define LZ4_COMPRESSBOUND(isize) ((unsigned)(isize) > (unsigned)LZ4_MAX_INPUT_SIZE ? 0 : (isize) + ((isize)/255) + 16)
158
163
 
159
- /*!
160
- LZ4_compressBound() :
164
+ /*! LZ4_compressBound() :
161
165
  Provides the maximum size that LZ4 compression may output in a "worst case" scenario (input data not compressible)
162
166
  This function is primarily useful for memory allocation purposes (destination buffer size).
163
167
  Macro LZ4_COMPRESSBOUND() is also provided for compilation-time evaluation (stack memory allocation for example).
164
- Note that LZ4_compress_default() compress faster when dest buffer size is >= LZ4_compressBound(srcSize)
168
+ Note that LZ4_compress_default() compresses faster when dstCapacity is >= LZ4_compressBound(srcSize)
165
169
  inputSize : max supported value is LZ4_MAX_INPUT_SIZE
166
170
  return : maximum output size in a "worst case" scenario
167
- or 0, if input size is too large ( > LZ4_MAX_INPUT_SIZE)
171
+ or 0, if input size is incorrect (too large or negative)
168
172
  */
169
173
  LZ4LIB_API int LZ4_compressBound(int inputSize);
170
174
 
171
- /*!
172
- LZ4_compress_fast() :
173
- Same as LZ4_compress_default(), but allows to select an "acceleration" factor.
175
+ /*! LZ4_compress_fast() :
176
+ Same as LZ4_compress_default(), but allows selection of "acceleration" factor.
174
177
  The larger the acceleration value, the faster the algorithm, but also the lesser the compression.
175
178
  It's a trade-off. It can be fine tuned, with each successive value providing roughly +~3% to speed.
176
179
  An acceleration value of "1" is the same as regular LZ4_compress_default()
177
- Values <= 0 will be replaced by ACCELERATION_DEFAULT (see lz4.c), which is 1.
180
+ Values <= 0 will be replaced by ACCELERATION_DEFAULT (currently == 1, see lz4.c).
178
181
  */
179
182
  LZ4LIB_API int LZ4_compress_fast (const char* src, char* dst, int srcSize, int dstCapacity, int acceleration);
180
183
 
181
184
 
182
- /*!
183
- LZ4_compress_fast_extState() :
184
- Same compression function, just using an externally allocated memory space to store compression state.
185
- Use LZ4_sizeofState() to know how much memory must be allocated,
186
- and allocate it on 8-bytes boundaries (using malloc() typically).
187
- Then, provide it as 'void* state' to compression function.
188
- */
185
+ /*! LZ4_compress_fast_extState() :
186
+ * Same as LZ4_compress_fast(), using an externally allocated memory space for its state.
187
+ * Use LZ4_sizeofState() to know how much memory must be allocated,
188
+ * and allocate it on 8-bytes boundaries (using `malloc()` typically).
189
+ * Then, provide this buffer as `void* state` to compression function.
190
+ */
189
191
  LZ4LIB_API int LZ4_sizeofState(void);
190
192
  LZ4LIB_API int LZ4_compress_fast_extState (void* state, const char* src, char* dst, int srcSize, int dstCapacity, int acceleration);
191
193
 
192
194
 
193
- /*!
194
- LZ4_compress_destSize() :
195
- Reverse the logic : compresses as much data as possible from 'src' buffer
196
- into already allocated buffer 'dst' of size 'targetDestSize'.
197
- This function either compresses the entire 'src' content into 'dst' if it's large enough,
198
- or fill 'dst' buffer completely with as much data as possible from 'src'.
199
- *srcSizePtr : will be modified to indicate how many bytes where read from 'src' to fill 'dst'.
200
- New value is necessarily <= old value.
201
- return : Nb bytes written into 'dst' (necessarily <= targetDestSize)
202
- or 0 if compression fails
195
+ /*! LZ4_compress_destSize() :
196
+ * Reverse the logic : compresses as much data as possible from 'src' buffer
197
+ * into already allocated buffer 'dst', of size >= 'targetDestSize'.
198
+ * This function either compresses the entire 'src' content into 'dst' if it's large enough,
199
+ * or fill 'dst' buffer completely with as much data as possible from 'src'.
200
+ * note: acceleration parameter is fixed to "default".
201
+ *
202
+ * *srcSizePtr : will be modified to indicate how many bytes where read from 'src' to fill 'dst'.
203
+ * New value is necessarily <= input value.
204
+ * @return : Nb bytes written into 'dst' (necessarily <= targetDestSize)
205
+ * or 0 if compression fails.
203
206
  */
204
207
  LZ4LIB_API int LZ4_compress_destSize (const char* src, char* dst, int* srcSizePtr, int targetDstSize);
205
208
 
206
209
 
207
- /*!
208
- LZ4_decompress_fast() : (unsafe!!)
209
- originalSize : is the original uncompressed size
210
- return : the number of bytes read from the source buffer (in other words, the compressed size)
211
- If the source stream is detected malformed, the function will stop decoding and return a negative result.
212
- Destination buffer must be already allocated. Its size must be >= 'originalSize' bytes.
213
- note : This function respects memory boundaries for *properly formed* compressed data.
214
- It is a bit faster than LZ4_decompress_safe().
215
- However, it does not provide any protection against intentionally modified data stream (malicious input).
216
- Use this function in trusted environment only (data to decode comes from a trusted source).
217
- */
218
- LZ4LIB_API int LZ4_decompress_fast (const char* src, char* dst, int originalSize);
219
-
220
- /*!
221
- LZ4_decompress_safe_partial() :
222
- This function decompress a compressed block of size 'srcSize' at position 'src'
223
- into destination buffer 'dst' of size 'dstCapacity'.
224
- The function will decompress a minimum of 'targetOutputSize' bytes, and stop after that.
225
- However, it's not accurate, and may write more than 'targetOutputSize' (but <= dstCapacity).
226
- @return : the number of bytes decoded in the destination buffer (necessarily <= dstCapacity)
227
- Note : this number can be < 'targetOutputSize' should the compressed block contain less data.
228
- Always control how many bytes were decoded.
229
- If the source stream is detected malformed, the function will stop decoding and return a negative result.
230
- This function never writes outside of output buffer, and never reads outside of input buffer. It is therefore protected against malicious data packets.
231
- */
210
+ /*! LZ4_decompress_safe_partial() :
211
+ * Decompress an LZ4 compressed block, of size 'srcSize' at position 'src',
212
+ * into destination buffer 'dst' of size 'dstCapacity'.
213
+ * Up to 'targetOutputSize' bytes will be decoded.
214
+ * The function stops decoding on reaching this objective,
215
+ * which can boost performance when only the beginning of a block is required.
216
+ *
217
+ * @return : the number of bytes decoded in `dst` (necessarily <= dstCapacity)
218
+ * If source stream is detected malformed, function returns a negative result.
219
+ *
220
+ * Note : @return can be < targetOutputSize, if compressed block contains less data.
221
+ *
222
+ * Note 2 : this function features 2 parameters, targetOutputSize and dstCapacity,
223
+ * and expects targetOutputSize <= dstCapacity.
224
+ * It effectively stops decoding on reaching targetOutputSize,
225
+ * so dstCapacity is kind of redundant.
226
+ * This is because in a previous version of this function,
227
+ * decoding operation would not "break" a sequence in the middle.
228
+ * As a consequence, there was no guarantee that decoding would stop at exactly targetOutputSize,
229
+ * it could write more bytes, though only up to dstCapacity.
230
+ * Some "margin" used to be required for this operation to work properly.
231
+ * This is no longer necessary.
232
+ * The function nonetheless keeps its signature, in an effort to not break API.
233
+ */
232
234
  LZ4LIB_API int LZ4_decompress_safe_partial (const char* src, char* dst, int srcSize, int targetOutputSize, int dstCapacity);
233
235
 
234
236
 
235
237
  /*-*********************************************
236
238
  * Streaming Compression Functions
237
239
  ***********************************************/
238
- typedef union LZ4_stream_u LZ4_stream_t; /* incomplete type (defined later) */
240
+ typedef union LZ4_stream_u LZ4_stream_t; /* incomplete type (defined later) */
239
241
 
240
- /*! LZ4_createStream() and LZ4_freeStream() :
241
- * LZ4_createStream() will allocate and initialize an `LZ4_stream_t` structure.
242
- * LZ4_freeStream() releases its memory.
243
- */
244
242
  LZ4LIB_API LZ4_stream_t* LZ4_createStream(void);
245
243
  LZ4LIB_API int LZ4_freeStream (LZ4_stream_t* streamPtr);
246
244
 
247
- /*! LZ4_resetStream() :
248
- * An LZ4_stream_t structure can be allocated once and re-used multiple times.
249
- * Use this function to start compressing a new stream.
245
+ /*! LZ4_resetStream_fast() : v1.9.0+
246
+ * Use this to prepare an LZ4_stream_t for a new chain of dependent blocks
247
+ * (e.g., LZ4_compress_fast_continue()).
248
+ *
249
+ * An LZ4_stream_t must be initialized once before usage.
250
+ * This is automatically done when created by LZ4_createStream().
251
+ * However, should the LZ4_stream_t be simply declared on stack (for example),
252
+ * it's necessary to initialize it first, using LZ4_initStream().
253
+ *
254
+ * After init, start any new stream with LZ4_resetStream_fast().
255
+ * A same LZ4_stream_t can be re-used multiple times consecutively
256
+ * and compress multiple streams,
257
+ * provided that it starts each new stream with LZ4_resetStream_fast().
258
+ *
259
+ * LZ4_resetStream_fast() is much faster than LZ4_initStream(),
260
+ * but is not compatible with memory regions containing garbage data.
261
+ *
262
+ * Note: it's only useful to call LZ4_resetStream_fast()
263
+ * in the context of streaming compression.
264
+ * The *extState* functions perform their own resets.
265
+ * Invoking LZ4_resetStream_fast() before is redundant, and even counterproductive.
250
266
  */
251
- LZ4LIB_API void LZ4_resetStream (LZ4_stream_t* streamPtr);
267
+ LZ4LIB_API void LZ4_resetStream_fast (LZ4_stream_t* streamPtr);
252
268
 
253
269
  /*! LZ4_loadDict() :
254
- * Use this function to load a static dictionary into LZ4_stream_t.
255
- * Any previous data will be forgotten, only 'dictionary' will remain in memory.
270
+ * Use this function to reference a static dictionary into LZ4_stream_t.
271
+ * The dictionary must remain available during compression.
272
+ * LZ4_loadDict() triggers a reset, so any previous data will be forgotten.
273
+ * The same dictionary will have to be loaded on decompression side for successful decoding.
274
+ * Dictionary are useful for better compression of small data (KB range).
275
+ * While LZ4 accept any input as dictionary,
276
+ * results are generally better when using Zstandard's Dictionary Builder.
256
277
  * Loading a size of 0 is allowed, and is the same as reset.
257
- * @return : dictionary size, in bytes (necessarily <= 64 KB)
278
+ * @return : loaded dictionary size, in bytes (necessarily <= 64 KB)
258
279
  */
259
280
  LZ4LIB_API int LZ4_loadDict (LZ4_stream_t* streamPtr, const char* dictionary, int dictSize);
260
281
 
261
282
  /*! LZ4_compress_fast_continue() :
262
- * Compress content into 'src' using data from previously compressed blocks, improving compression ratio.
263
- * 'dst' buffer must be already allocated.
283
+ * Compress 'src' content using data from previously compressed blocks, for better compression ratio.
284
+ * 'dst' buffer must be already allocated.
264
285
  * If dstCapacity >= LZ4_compressBound(srcSize), compression is guaranteed to succeed, and runs faster.
265
286
  *
266
- * Important : Up to 64KB of previously compressed data is assumed to remain present and unmodified in memory !
267
- * Special 1 : If input buffer is a double-buffer, it can have any size, including < 64 KB.
268
- * Special 2 : If input buffer is a ring-buffer, it can have any size, including < 64 KB.
269
- *
270
287
  * @return : size of compressed block
271
- * or 0 if there is an error (typically, compressed data cannot fit into 'dst')
272
- * After an error, the stream status is invalid, it can only be reset or freed.
288
+ * or 0 if there is an error (typically, cannot fit into 'dst').
289
+ *
290
+ * Note 1 : Each invocation to LZ4_compress_fast_continue() generates a new block.
291
+ * Each block has precise boundaries.
292
+ * Each block must be decompressed separately, calling LZ4_decompress_*() with relevant metadata.
293
+ * It's not possible to append blocks together and expect a single invocation of LZ4_decompress_*() to decompress them together.
294
+ *
295
+ * Note 2 : The previous 64KB of source data is __assumed__ to remain present, unmodified, at same address in memory !
296
+ *
297
+ * Note 3 : When input is structured as a double-buffer, each buffer can have any size, including < 64 KB.
298
+ * Make sure that buffers are separated, by at least one byte.
299
+ * This construction ensures that each block only depends on previous block.
300
+ *
301
+ * Note 4 : If input buffer is a ring-buffer, it can have any size, including < 64 KB.
302
+ *
303
+ * Note 5 : After an error, the stream status is undefined (invalid), it can only be reset or freed.
273
304
  */
274
305
  LZ4LIB_API int LZ4_compress_fast_continue (LZ4_stream_t* streamPtr, const char* src, char* dst, int srcSize, int dstCapacity, int acceleration);
275
306
 
276
307
  /*! LZ4_saveDict() :
277
- * If previously compressed data block is not guaranteed to remain available at its current memory location,
308
+ * If last 64KB data cannot be guaranteed to remain available at its current memory location,
278
309
  * save it into a safer place (char* safeBuffer).
279
- * Note : it's not necessary to call LZ4_loadDict() after LZ4_saveDict(), dictionary is immediately usable.
280
- * @return : saved dictionary size in bytes (necessarily <= dictSize), or 0 if error.
310
+ * This is schematically equivalent to a memcpy() followed by LZ4_loadDict(),
311
+ * but is much faster, because LZ4_saveDict() doesn't need to rebuild tables.
312
+ * @return : saved dictionary size in bytes (necessarily <= maxDictSize), or 0 if error.
281
313
  */
282
- LZ4LIB_API int LZ4_saveDict (LZ4_stream_t* streamPtr, char* safeBuffer, int dictSize);
314
+ LZ4LIB_API int LZ4_saveDict (LZ4_stream_t* streamPtr, char* safeBuffer, int maxDictSize);
283
315
 
284
316
 
285
317
  /*-**********************************************
286
318
  * Streaming Decompression Functions
287
319
  * Bufferless synchronous API
288
320
  ************************************************/
289
- typedef union LZ4_streamDecode_u LZ4_streamDecode_t; /* incomplete type (defined later) */
321
+ typedef union LZ4_streamDecode_u LZ4_streamDecode_t; /* tracking context */
290
322
 
291
323
  /*! LZ4_createStreamDecode() and LZ4_freeStreamDecode() :
292
- * creation / destruction of streaming decompression tracking structure.
293
- * A tracking structure can be re-used multiple times sequentially. */
324
+ * creation / destruction of streaming decompression tracking context.
325
+ * A tracking context can be re-used multiple times.
326
+ */
294
327
  LZ4LIB_API LZ4_streamDecode_t* LZ4_createStreamDecode(void);
295
328
  LZ4LIB_API int LZ4_freeStreamDecode (LZ4_streamDecode_t* LZ4_stream);
296
329
 
297
330
  /*! LZ4_setStreamDecode() :
298
- * An LZ4_streamDecode_t structure can be allocated once and re-used multiple times.
331
+ * An LZ4_streamDecode_t context can be allocated once and re-used multiple times.
299
332
  * Use this function to start decompression of a new stream of blocks.
300
- * A dictionary can optionnally be set. Use NULL or size 0 for a simple reset order.
333
+ * A dictionary can optionally be set. Use NULL or size 0 for a reset order.
334
+ * Dictionary is presumed stable : it must remain accessible and unmodified during next decompression.
301
335
  * @return : 1 if OK, 0 if error
302
336
  */
303
337
  LZ4LIB_API int LZ4_setStreamDecode (LZ4_streamDecode_t* LZ4_streamDecode, const char* dictionary, int dictSize);
304
338
 
339
+ /*! LZ4_decoderRingBufferSize() : v1.8.2+
340
+ * Note : in a ring buffer scenario (optional),
341
+ * blocks are presumed decompressed next to each other
342
+ * up to the moment there is not enough remaining space for next block (remainingSize < maxBlockSize),
343
+ * at which stage it resumes from beginning of ring buffer.
344
+ * When setting such a ring buffer for streaming decompression,
345
+ * provides the minimum size of this ring buffer
346
+ * to be compatible with any source respecting maxBlockSize condition.
347
+ * @return : minimum ring buffer size,
348
+ * or 0 if there is an error (invalid maxBlockSize).
349
+ */
350
+ LZ4LIB_API int LZ4_decoderRingBufferSize(int maxBlockSize);
351
+ #define LZ4_DECODER_RING_BUFFER_SIZE(maxBlockSize) (65536 + 14 + (maxBlockSize)) /* for static allocation; maxBlockSize presumed valid */
352
+
305
353
  /*! LZ4_decompress_*_continue() :
306
354
  * These decoding functions allow decompression of consecutive blocks in "streaming" mode.
307
355
  * A block is an unsplittable entity, it must be presented entirely to a decompression function.
308
- * Decompression functions only accept one block at a time.
309
- * Previously decoded blocks *must* remain available at the memory position where they were decoded (up to 64 KB).
310
- *
311
- * Special : if application sets a ring buffer for decompression, it must respect one of the following conditions :
312
- * - Exactly same size as encoding buffer, with same update rule (block boundaries at same positions)
313
- * In which case, the decoding & encoding ring buffer can have any size, including very small ones ( < 64 KB).
314
- * - Larger than encoding buffer, by a minimum of maxBlockSize more bytes.
315
- * maxBlockSize is implementation dependent. It's the maximum size of any single block.
356
+ * Decompression functions only accepts one block at a time.
357
+ * The last 64KB of previously decoded data *must* remain available and unmodified at the memory position where they were decoded.
358
+ * If less than 64KB of data has been decoded, all the data must be present.
359
+ *
360
+ * Special : if decompression side sets a ring buffer, it must respect one of the following conditions :
361
+ * - Decompression buffer size is _at least_ LZ4_decoderRingBufferSize(maxBlockSize).
362
+ * maxBlockSize is the maximum size of any single block. It can have any value > 16 bytes.
363
+ * In which case, encoding and decoding buffers do not need to be synchronized.
364
+ * Actually, data can be produced by any source compliant with LZ4 format specification, and respecting maxBlockSize.
365
+ * - Synchronized mode :
366
+ * Decompression buffer size is _exactly_ the same as compression buffer size,
367
+ * and follows exactly same update rule (block boundaries at same positions),
368
+ * and decoding function is provided with exact decompressed size of each block (exception for last block of the stream),
369
+ * _then_ decoding & encoding ring buffer can have any size, including small ones ( < 64 KB).
370
+ * - Decompression buffer is larger than encoding buffer, by a minimum of maxBlockSize more bytes.
316
371
  * In which case, encoding and decoding buffers do not need to be synchronized,
317
372
  * and encoding ring buffer can have any size, including small ones ( < 64 KB).
318
- * - _At least_ 64 KB + 8 bytes + maxBlockSize.
319
- * In which case, encoding and decoding buffers do not need to be synchronized,
320
- * and encoding ring buffer can have any size, including larger than decoding buffer.
321
- * Whenever these conditions are not possible, save the last 64KB of decoded data into a safe buffer,
322
- * and indicate where it is saved using LZ4_setStreamDecode() before decompressing next block.
373
+ *
374
+ * Whenever these conditions are not possible,
375
+ * save the last 64KB of decoded data into a safe buffer where it can't be modified during decompression,
376
+ * then indicate where this data is saved using LZ4_setStreamDecode(), before decompressing next block.
323
377
  */
324
378
  LZ4LIB_API int LZ4_decompress_safe_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* src, char* dst, int srcSize, int dstCapacity);
325
- LZ4LIB_API int LZ4_decompress_fast_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* src, char* dst, int originalSize);
326
379
 
327
380
 
328
381
  /*! LZ4_decompress_*_usingDict() :
329
382
  * These decoding functions work the same as
330
383
  * a combination of LZ4_setStreamDecode() followed by LZ4_decompress_*_continue()
331
384
  * They are stand-alone, and don't need an LZ4_streamDecode_t structure.
385
+ * Dictionary is presumed stable : it must remain accessible and unmodified during decompression.
386
+ * Performance tip : Decompression speed can be substantially increased
387
+ * when dst == dictStart + dictSize.
332
388
  */
333
389
  LZ4LIB_API int LZ4_decompress_safe_usingDict (const char* src, char* dst, int srcSize, int dstCapcity, const char* dictStart, int dictSize);
334
- LZ4LIB_API int LZ4_decompress_fast_usingDict (const char* src, char* dst, int originalSize, const char* dictStart, int dictSize);
335
390
 
336
391
 
337
- /*^**********************************************
392
+ /*^*************************************
338
393
  * !!!!!! STATIC LINKING ONLY !!!!!!
339
- ***********************************************/
340
- /*-************************************
341
- * Private definitions
342
- **************************************
343
- * Do not use these definitions.
344
- * They are exposed to allow static allocation of `LZ4_stream_t` and `LZ4_streamDecode_t`.
345
- * Using these definitions will expose code to API and/or ABI break in future versions of the library.
346
- **************************************/
394
+ ***************************************/
395
+
396
+ /*-****************************************************************************
397
+ * Experimental section
398
+ *
399
+ * Symbols declared in this section must be considered unstable. Their
400
+ * signatures or semantics may change, or they may be removed altogether in the
401
+ * future. They are therefore only safe to depend on when the caller is
402
+ * statically linked against the library.
403
+ *
404
+ * To protect against unsafe usage, not only are the declarations guarded,
405
+ * the definitions are hidden by default
406
+ * when building LZ4 as a shared/dynamic library.
407
+ *
408
+ * In order to access these declarations,
409
+ * define LZ4_STATIC_LINKING_ONLY in your application
410
+ * before including LZ4's headers.
411
+ *
412
+ * In order to make their implementations accessible dynamically, you must
413
+ * define LZ4_PUBLISH_STATIC_FUNCTIONS when building the LZ4 library.
414
+ ******************************************************************************/
415
+
416
+ #ifdef LZ4_PUBLISH_STATIC_FUNCTIONS
417
+ #define LZ4LIB_STATIC_API LZ4LIB_API
418
+ #else
419
+ #define LZ4LIB_STATIC_API
420
+ #endif
421
+
422
+ #ifdef LZ4_STATIC_LINKING_ONLY
423
+
424
+
425
+ /*! LZ4_compress_fast_extState_fastReset() :
426
+ * A variant of LZ4_compress_fast_extState().
427
+ *
428
+ * Using this variant avoids an expensive initialization step.
429
+ * It is only safe to call if the state buffer is known to be correctly initialized already
430
+ * (see above comment on LZ4_resetStream_fast() for a definition of "correctly initialized").
431
+ * From a high level, the difference is that
432
+ * this function initializes the provided state with a call to something like LZ4_resetStream_fast()
433
+ * while LZ4_compress_fast_extState() starts with a call to LZ4_resetStream().
434
+ */
435
+ LZ4LIB_STATIC_API int LZ4_compress_fast_extState_fastReset (void* state, const char* src, char* dst, int srcSize, int dstCapacity, int acceleration);
436
+
437
+ /*! LZ4_attach_dictionary() :
438
+ * This is an experimental API that allows
439
+ * efficient use of a static dictionary many times.
440
+ *
441
+ * Rather than re-loading the dictionary buffer into a working context before
442
+ * each compression, or copying a pre-loaded dictionary's LZ4_stream_t into a
443
+ * working LZ4_stream_t, this function introduces a no-copy setup mechanism,
444
+ * in which the working stream references the dictionary stream in-place.
445
+ *
446
+ * Several assumptions are made about the state of the dictionary stream.
447
+ * Currently, only streams which have been prepared by LZ4_loadDict() should
448
+ * be expected to work.
449
+ *
450
+ * Alternatively, the provided dictionaryStream may be NULL,
451
+ * in which case any existing dictionary stream is unset.
452
+ *
453
+ * If a dictionary is provided, it replaces any pre-existing stream history.
454
+ * The dictionary contents are the only history that can be referenced and
455
+ * logically immediately precede the data compressed in the first subsequent
456
+ * compression call.
457
+ *
458
+ * The dictionary will only remain attached to the working stream through the
459
+ * first compression call, at the end of which it is cleared. The dictionary
460
+ * stream (and source buffer) must remain in-place / accessible / unchanged
461
+ * through the completion of the first compression call on the stream.
462
+ */
463
+ LZ4LIB_STATIC_API void LZ4_attach_dictionary(LZ4_stream_t* workingStream, const LZ4_stream_t* dictionaryStream);
464
+
465
+ #endif
466
+
467
+
468
+ /*-************************************************************
469
+ * PRIVATE DEFINITIONS
470
+ **************************************************************
471
+ * Do not use these definitions directly.
472
+ * They are only exposed to allow static allocation of `LZ4_stream_t` and `LZ4_streamDecode_t`.
473
+ * Accessing members will expose code to API and/or ABI break in future versions of the library.
474
+ **************************************************************/
347
475
  #define LZ4_HASHLOG (LZ4_MEMORY_USAGE-2)
348
476
  #define LZ4_HASHTABLESIZE (1 << LZ4_MEMORY_USAGE)
349
477
  #define LZ4_HASH_SIZE_U32 (1 << LZ4_HASHLOG) /* required as macro for static allocation */
@@ -351,14 +479,16 @@ LZ4LIB_API int LZ4_decompress_fast_usingDict (const char* src, char* dst, int or
351
479
  #if defined(__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */)
352
480
  #include <stdint.h>
353
481
 
354
- typedef struct {
482
+ typedef struct LZ4_stream_t_internal LZ4_stream_t_internal;
483
+ struct LZ4_stream_t_internal {
355
484
  uint32_t hashTable[LZ4_HASH_SIZE_U32];
356
485
  uint32_t currentOffset;
357
- uint32_t initCheck;
486
+ uint16_t dirty;
487
+ uint16_t tableType;
358
488
  const uint8_t* dictionary;
359
- uint8_t* bufferStart; /* obsolete, used for slideInputBuffer */
489
+ const LZ4_stream_t_internal* dictCtx;
360
490
  uint32_t dictSize;
361
- } LZ4_stream_t_internal;
491
+ };
362
492
 
363
493
  typedef struct {
364
494
  const uint8_t* externalDict;
@@ -369,49 +499,67 @@ typedef struct {
369
499
 
370
500
  #else
371
501
 
372
- typedef struct {
502
+ typedef struct LZ4_stream_t_internal LZ4_stream_t_internal;
503
+ struct LZ4_stream_t_internal {
373
504
  unsigned int hashTable[LZ4_HASH_SIZE_U32];
374
505
  unsigned int currentOffset;
375
- unsigned int initCheck;
506
+ unsigned short dirty;
507
+ unsigned short tableType;
376
508
  const unsigned char* dictionary;
377
- unsigned char* bufferStart; /* obsolete, used for slideInputBuffer */
509
+ const LZ4_stream_t_internal* dictCtx;
378
510
  unsigned int dictSize;
379
- } LZ4_stream_t_internal;
511
+ };
380
512
 
381
513
  typedef struct {
382
514
  const unsigned char* externalDict;
383
- size_t extDictSize;
384
515
  const unsigned char* prefixEnd;
516
+ size_t extDictSize;
385
517
  size_t prefixSize;
386
518
  } LZ4_streamDecode_t_internal;
387
519
 
388
520
  #endif
389
521
 
390
- /*!
391
- * LZ4_stream_t :
392
- * information structure to track an LZ4 stream.
393
- * init this structure before first use.
394
- * note : only use in association with static linking !
395
- * this definition is not API/ABI safe,
396
- * it may change in a future version !
522
+ /*! LZ4_stream_t :
523
+ * information structure to track an LZ4 stream.
524
+ * LZ4_stream_t can also be created using LZ4_createStream(), which is recommended.
525
+ * The structure definition can be convenient for static allocation
526
+ * (on stack, or as part of larger structure).
527
+ * Init this structure with LZ4_initStream() before first use.
528
+ * note : only use this definition in association with static linking !
529
+ * this definition is not API/ABI safe, and may change in a future version.
397
530
  */
398
- #define LZ4_STREAMSIZE_U64 ((1 << (LZ4_MEMORY_USAGE-3)) + 4)
531
+ #define LZ4_STREAMSIZE_U64 ((1 << (LZ4_MEMORY_USAGE-3)) + 4 + ((sizeof(void*)==16) ? 4 : 0) /*AS-400*/ )
399
532
  #define LZ4_STREAMSIZE (LZ4_STREAMSIZE_U64 * sizeof(unsigned long long))
400
533
  union LZ4_stream_u {
401
534
  unsigned long long table[LZ4_STREAMSIZE_U64];
402
535
  LZ4_stream_t_internal internal_donotuse;
403
536
  } ; /* previously typedef'd to LZ4_stream_t */
404
537
 
538
+ /*! LZ4_initStream() : v1.9.0+
539
+ * An LZ4_stream_t structure must be initialized at least once.
540
+ * This is automatically done when invoking LZ4_createStream(),
541
+ * but it's not when the structure is simply declared on stack (for example).
542
+ *
543
+ * Use LZ4_initStream() to properly initialize a newly declared LZ4_stream_t.
544
+ * It can also initialize any arbitrary buffer of sufficient size,
545
+ * and will @return a pointer of proper type upon initialization.
546
+ *
547
+ * Note : initialization fails if size and alignment conditions are not respected.
548
+ * In which case, the function will @return NULL.
549
+ * Note2: An LZ4_stream_t structure guarantees correct alignment and size.
550
+ * Note3: Before v1.9.0, use LZ4_resetStream() instead
551
+ */
552
+ LZ4LIB_API LZ4_stream_t* LZ4_initStream (void* buffer, size_t size);
553
+
405
554
 
406
- /*!
407
- * LZ4_streamDecode_t :
408
- * information structure to track an LZ4 stream during decompression.
409
- * init this structure using LZ4_setStreamDecode (or memset()) before first use
410
- * note : only use in association with static linking !
411
- * this definition is not API/ABI safe,
412
- * and may change in a future version !
555
+ /*! LZ4_streamDecode_t :
556
+ * information structure to track an LZ4 stream during decompression.
557
+ * init this structure using LZ4_setStreamDecode() before first use.
558
+ * note : only use in association with static linking !
559
+ * this definition is not API/ABI safe,
560
+ * and may change in a future version !
413
561
  */
414
- #define LZ4_STREAMDECODESIZE_U64 4
562
+ #define LZ4_STREAMDECODESIZE_U64 (4 + ((sizeof(void*)==16) ? 2 : 0) /*AS-400*/ )
415
563
  #define LZ4_STREAMDECODESIZE (LZ4_STREAMDECODESIZE_U64 * sizeof(unsigned long long))
416
564
  union LZ4_streamDecode_u {
417
565
  unsigned long long table[LZ4_STREAMDECODESIZE_U64];
@@ -424,20 +572,23 @@ union LZ4_streamDecode_u {
424
572
  **************************************/
425
573
 
426
574
  /*! Deprecation warnings
427
- Should deprecation warnings be a problem,
428
- it is generally possible to disable them,
429
- typically with -Wno-deprecated-declarations for gcc
430
- or _CRT_SECURE_NO_WARNINGS in Visual.
431
- Otherwise, it's also possible to define LZ4_DISABLE_DEPRECATE_WARNINGS */
575
+ *
576
+ * Deprecated functions make the compiler generate a warning when invoked.
577
+ * This is meant to invite users to update their source code.
578
+ * Should deprecation warnings be a problem, it is generally possible to disable them,
579
+ * typically with -Wno-deprecated-declarations for gcc
580
+ * or _CRT_SECURE_NO_WARNINGS in Visual.
581
+ *
582
+ * Another method is to define LZ4_DISABLE_DEPRECATE_WARNINGS
583
+ * before including the header file.
584
+ */
432
585
  #ifdef LZ4_DISABLE_DEPRECATE_WARNINGS
433
586
  # define LZ4_DEPRECATED(message) /* disable deprecation warnings */
434
587
  #else
435
588
  # define LZ4_GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__)
436
- # if defined(__clang__) /* clang doesn't handle mixed C++11 and CNU attributes */
437
- # define LZ4_DEPRECATED(message) __attribute__((deprecated(message)))
438
- # elif defined (__cplusplus) && (__cplusplus >= 201402) /* C++14 or greater */
589
+ # if defined (__cplusplus) && (__cplusplus >= 201402) /* C++14 or greater */
439
590
  # define LZ4_DEPRECATED(message) [[deprecated(message)]]
440
- # elif (LZ4_GCC_VERSION >= 405)
591
+ # elif (LZ4_GCC_VERSION >= 405) || defined(__clang__)
441
592
  # define LZ4_DEPRECATED(message) __attribute__((deprecated(message)))
442
593
  # elif (LZ4_GCC_VERSION >= 301)
443
594
  # define LZ4_DEPRECATED(message) __attribute__((deprecated))
@@ -450,26 +601,75 @@ union LZ4_streamDecode_u {
450
601
  #endif /* LZ4_DISABLE_DEPRECATE_WARNINGS */
451
602
 
452
603
  /* Obsolete compression functions */
453
- LZ4LIB_API LZ4_DEPRECATED("use LZ4_compress_default() instead") int LZ4_compress (const char* source, char* dest, int sourceSize);
454
- LZ4LIB_API LZ4_DEPRECATED("use LZ4_compress_default() instead") int LZ4_compress_limitedOutput (const char* source, char* dest, int sourceSize, int maxOutputSize);
455
- LZ4LIB_API LZ4_DEPRECATED("use LZ4_compress_fast_extState() instead") int LZ4_compress_withState (void* state, const char* source, char* dest, int inputSize);
456
- LZ4LIB_API LZ4_DEPRECATED("use LZ4_compress_fast_extState() instead") int LZ4_compress_limitedOutput_withState (void* state, const char* source, char* dest, int inputSize, int maxOutputSize);
457
- LZ4LIB_API LZ4_DEPRECATED("use LZ4_compress_fast_continue() instead") int LZ4_compress_continue (LZ4_stream_t* LZ4_streamPtr, const char* source, char* dest, int inputSize);
458
- LZ4LIB_API LZ4_DEPRECATED("use LZ4_compress_fast_continue() instead") int LZ4_compress_limitedOutput_continue (LZ4_stream_t* LZ4_streamPtr, const char* source, char* dest, int inputSize, int maxOutputSize);
604
+ LZ4_DEPRECATED("use LZ4_compress_default() instead") LZ4LIB_API int LZ4_compress (const char* source, char* dest, int sourceSize);
605
+ LZ4_DEPRECATED("use LZ4_compress_default() instead") LZ4LIB_API int LZ4_compress_limitedOutput (const char* source, char* dest, int sourceSize, int maxOutputSize);
606
+ LZ4_DEPRECATED("use LZ4_compress_fast_extState() instead") LZ4LIB_API int LZ4_compress_withState (void* state, const char* source, char* dest, int inputSize);
607
+ LZ4_DEPRECATED("use LZ4_compress_fast_extState() instead") LZ4LIB_API int LZ4_compress_limitedOutput_withState (void* state, const char* source, char* dest, int inputSize, int maxOutputSize);
608
+ LZ4_DEPRECATED("use LZ4_compress_fast_continue() instead") LZ4LIB_API int LZ4_compress_continue (LZ4_stream_t* LZ4_streamPtr, const char* source, char* dest, int inputSize);
609
+ LZ4_DEPRECATED("use LZ4_compress_fast_continue() instead") LZ4LIB_API int LZ4_compress_limitedOutput_continue (LZ4_stream_t* LZ4_streamPtr, const char* source, char* dest, int inputSize, int maxOutputSize);
459
610
 
460
611
  /* Obsolete decompression functions */
461
- LZ4LIB_API LZ4_DEPRECATED("use LZ4_decompress_fast() instead") int LZ4_uncompress (const char* source, char* dest, int outputSize);
462
- LZ4LIB_API LZ4_DEPRECATED("use LZ4_decompress_safe() instead") int LZ4_uncompress_unknownOutputSize (const char* source, char* dest, int isize, int maxOutputSize);
612
+ LZ4_DEPRECATED("use LZ4_decompress_fast() instead") LZ4LIB_API int LZ4_uncompress (const char* source, char* dest, int outputSize);
613
+ LZ4_DEPRECATED("use LZ4_decompress_safe() instead") LZ4LIB_API int LZ4_uncompress_unknownOutputSize (const char* source, char* dest, int isize, int maxOutputSize);
463
614
 
464
- /* Obsolete streaming functions; use new streaming interface whenever possible */
465
- LZ4LIB_API LZ4_DEPRECATED("use LZ4_createStream() instead") void* LZ4_create (char* inputBuffer);
466
- LZ4LIB_API LZ4_DEPRECATED("use LZ4_createStream() instead") int LZ4_sizeofStreamState(void);
467
- LZ4LIB_API LZ4_DEPRECATED("use LZ4_resetStream() instead") int LZ4_resetStreamState(void* state, char* inputBuffer);
468
- LZ4LIB_API LZ4_DEPRECATED("use LZ4_saveDict() instead") char* LZ4_slideInputBuffer (void* state);
615
+ /* Obsolete streaming functions; degraded functionality; do not use!
616
+ *
617
+ * In order to perform streaming compression, these functions depended on data
618
+ * that is no longer tracked in the state. They have been preserved as well as
619
+ * possible: using them will still produce a correct output. However, they don't
620
+ * actually retain any history between compression calls. The compression ratio
621
+ * achieved will therefore be no better than compressing each chunk
622
+ * independently.
623
+ */
624
+ LZ4_DEPRECATED("Use LZ4_createStream() instead") LZ4LIB_API void* LZ4_create (char* inputBuffer);
625
+ LZ4_DEPRECATED("Use LZ4_createStream() instead") LZ4LIB_API int LZ4_sizeofStreamState(void);
626
+ LZ4_DEPRECATED("Use LZ4_resetStream() instead") LZ4LIB_API int LZ4_resetStreamState(void* state, char* inputBuffer);
627
+ LZ4_DEPRECATED("Use LZ4_saveDict() instead") LZ4LIB_API char* LZ4_slideInputBuffer (void* state);
469
628
 
470
629
  /* Obsolete streaming decoding functions */
471
- LZ4LIB_API LZ4_DEPRECATED("use LZ4_decompress_safe_usingDict() instead") int LZ4_decompress_safe_withPrefix64k (const char* src, char* dst, int compressedSize, int maxDstSize);
472
- LZ4LIB_API LZ4_DEPRECATED("use LZ4_decompress_fast_usingDict() instead") int LZ4_decompress_fast_withPrefix64k (const char* src, char* dst, int originalSize);
630
+ LZ4_DEPRECATED("use LZ4_decompress_safe_usingDict() instead") LZ4LIB_API int LZ4_decompress_safe_withPrefix64k (const char* src, char* dst, int compressedSize, int maxDstSize);
631
+ LZ4_DEPRECATED("use LZ4_decompress_fast_usingDict() instead") LZ4LIB_API int LZ4_decompress_fast_withPrefix64k (const char* src, char* dst, int originalSize);
632
+
633
+ /*! LZ4_decompress_fast() : **unsafe!**
634
+ * These functions are generally slightly faster than LZ4_decompress_safe(),
635
+ * though the difference is small (generally ~5%).
636
+ * However, the real cost is a risk : LZ4_decompress_safe() is protected vs malformed input, while `LZ4_decompress_fast()` is not, making it a security liability.
637
+ * As a consequence, LZ4_decompress_fast() is strongly discouraged, and deprecated.
638
+ * These functions will generate a deprecation warning in the future.
639
+ *
640
+ * Last LZ4_decompress_fast() specificity is that it can decompress a block without knowing its compressed size.
641
+ * Note that even that functionality could be achieved in a more secure manner if need be,
642
+ * though it would require new prototypes, and adaptation of the implementation to this new use case.
643
+ *
644
+ * Parameters:
645
+ * originalSize : is the uncompressed size to regenerate.
646
+ * `dst` must be already allocated, its size must be >= 'originalSize' bytes.
647
+ * @return : number of bytes read from source buffer (== compressed size).
648
+ * The function expects to finish at block's end exactly.
649
+ * If the source stream is detected malformed, the function stops decoding and returns a negative result.
650
+ * note : LZ4_decompress_fast*() requires originalSize. Thanks to this information, it never writes past the output buffer.
651
+ * However, since it doesn't know its 'src' size, it may read an unknown amount of input, past input buffer bounds.
652
+ * Also, since match offsets are not validated, match reads from 'src' may underflow too.
653
+ * These issues never happen if input (compressed) data is correct.
654
+ * But they may happen if input data is invalid (error or intentional tampering).
655
+ * As a consequence, use these functions in trusted environments with trusted data **only**.
656
+ */
657
+
658
+ /* LZ4_DEPRECATED("This function is deprecated and unsafe. Consider using LZ4_decompress_safe() instead") */
659
+ LZ4LIB_API int LZ4_decompress_fast (const char* src, char* dst, int originalSize);
660
+ /* LZ4_DEPRECATED("This function is deprecated and unsafe. Consider using LZ4_decompress_safe_continue() instead") */
661
+ LZ4LIB_API int LZ4_decompress_fast_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* src, char* dst, int originalSize);
662
+ /* LZ4_DEPRECATED("This function is deprecated and unsafe. Consider using LZ4_decompress_safe_usingDict() instead") */
663
+ LZ4LIB_API int LZ4_decompress_fast_usingDict (const char* src, char* dst, int originalSize, const char* dictStart, int dictSize);
664
+
665
+ /*! LZ4_resetStream() :
666
+ * An LZ4_stream_t structure must be initialized at least once.
667
+ * This is done with LZ4_initStream(), or LZ4_resetStream().
668
+ * Consider switching to LZ4_initStream(),
669
+ * invoking LZ4_resetStream() will trigger deprecation warnings in the future.
670
+ */
671
+ LZ4LIB_API void LZ4_resetStream (LZ4_stream_t* streamPtr);
672
+
473
673
 
474
674
  #endif /* LZ4_H_2983827168210 */
475
675