• Home
  • Raw
  • Download

Lines Matching +full:- +full:- +full:with +full:- +full:zstd

5  * This source code is licensed under both the BSD-style license (found in the
8 * You may select, at your option, one of the above-listed licenses.
16 #define ZLIB_INTERNAL /* disables gz*64 functions but fixes zlib 1.2.4 with Z_PREFIX */
32 /* returns a string with version of zstd library */
37 /* ZWRAP_useZSTDcompression() enables/disables zstd compression during runtime.
38 … By default zstd compression is disabled. To enable zstd compression please use one of the methods:
39 - compilation with the additional option -DZWRAP_USE_ZSTD=1
40 - using '#define ZWRAP_USE_ZSTD 1' in source code before '#include "zstd_zlibwrapper.h"'
41 - calling ZWRAP_useZSTDcompression(1)
42 All above-mentioned methods will enable zstd compression for all threads.
43 Be aware that ZWRAP_useZSTDcompression() is not thread-safe and may lead to a race condition. */
46 /* checks if zstd compression is turned on */
50 It will change ZSTD compression parameters what may improve compression speed and/or ratio.
67 /* ZWRAP_setDecompressionType() enables/disables automatic recognition of zstd/zlib compressed data…
68 By default auto-detection of zstd and zlib streams in enabled (ZWRAP_AUTO).
69 Forcing zlib decompression with ZWRAP_setDecompressionType(ZWRAP_FORCE_ZLIB) slightly improves
70 decompression speed of zlib-encoded streams.
71 … Be aware that ZWRAP_setDecompressionType() is not thread-safe and may lead to a race condition. */
74 /* checks zstd decompression type */
77 /* Checks if zstd decompression is used for a given stream.
78 If will return 1 only when inflate() was called and zstd header was detected. */