X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=src%2Fwrite.c;h=835ad41bb341eff13a07a88fcf7172fb920dab73;hb=refs%2Fheads%2Fzstd_support;hp=4805913de376fab95c1982eae45f0253a6dd13ec;hpb=06be73db2299bf580cfc4197099bce8547472825;p=wimlib diff --git a/src/write.c b/src/write.c index 4805913d..835ad41b 100644 --- a/src/write.c +++ b/src/write.c @@ -2767,6 +2767,10 @@ write_wim_part(WIMStruct *wim, case WIMLIB_COMPRESSION_TYPE_LZMS: wim->out_hdr.flags |= WIM_HDR_FLAG_COMPRESS_LZMS; break; + case WIMLIB_COMPRESSION_TYPE_ZSTD: + WARNING("Zstandard support is experimental -- use only for benchmarking!"); + wim->out_hdr.flags |= WIM_HDR_FLAG_COMPRESS_ZSTD; + break; } }