zstd icon indicating copy to clipboard operation
zstd copied to clipboard

Zstandard - Fast real-time compression algorithm

Results 283 zstd issues
Sort by recently updated
recently updated
newest added

**Describe the bug** I compile libzstd in folder `lib` with: ``` make ZSTD_LIB_COMPRESSION=0 ZSTD_LIB_DICTBUILDER=0 ZSTD_LIB_DEPRECATED=0 ZSTD_LEGACY_SUPPORT=0 ZSTD_NO_UNUSED_FUNCTIONS=1 DYNAMIC_BMI2=0 CC=clang ``` When I add `CFLAGS` on command line and override BMI2...

**Is your feature request related to a problem? Please describe.** Request For Enhancement (RFE): Please document, enhance, and maintain Zstd so that the decompressor **can** work with a malloc+free that...

question
feature request
documentation

zstd version: *** Zstandard CLI (32-bit) v1.5.4, by Yann Collet *** My steps: 1. train from the original log file (20MB/file, 45 log files) ``` $ zstd -B4096 --train -r...

question

More than 6 years passed and many changes made on zstd and btrfs side. Refresh data for recent CPU/Kernel and add slightly more information about the environment.

CLA Signed

**Description** The problem I am having is related to raster compression in GIS and web maps and machine learning, where it is common to keep raster data in individually compressed...

**Describe the bug** I think zstd should not ignore symlinks when writing to stdout since it is the same effect as when using `zstdcat`. As reference I'm using the python...

The memory leak is reported by a static analyzer tool developed at [CAST](https://www.linkedin.com/company/cast-center) memory is allocated [here](https://github.com/facebook/zstd/blob/1c007e64b85248b989aa7a9bea50897aae8fdb41/programs/util.c#L1262) may left w/o free in case of [exit](https://github.com/facebook/zstd/blob/1c007e64b85248b989aa7a9bea50897aae8fdb41/programs/util.c#L62) from macro ['CONTROL'](https://github.com/facebook/zstd/blob/1c007e64b85248b989aa7a9bea50897aae8fdb41/programs/util.c#L1269C13-L1269C13)

**Describe the bug** The cmake file under build/cmake/ is missing these under static and shared library creation which prevent the inclusion libzstd_static or libzstd_shared targets into another project that uses...

help wanted
build

Adds a format in `contrib/dict_in_stream` that stores a dictionary, optionally compressed, in a skippable frame at the beginning of a stream. This format is useful to reduce the size of...

CLA Signed

**Is your feature request related to a problem? Please describe.** I am developing a `ZstdDecoder` on netty, network data packets are transmitted in blocks, and netty as a framework, in...

question
feature request