mirror of
https://github.com/randy408/libspng
synced 2025-03-28 21:13:20 +00:00
disable deflate window bits optimization for miniz
This commit is contained in:
parent
b239513411
commit
a03945d2ad
@ -4801,6 +4801,7 @@ int spng_encode_image(spng_ctx *ctx, const void *img, size_t len, int fmt, int f
|
||||
ctx->image_options.strategy = Z_DEFAULT_STRATEGY;
|
||||
}
|
||||
|
||||
#ifndef SPNG_USE_MINIZ
|
||||
if(ctx->image_size && spng__optimize(SPNG_IMG_WINDOW_BITS))
|
||||
{
|
||||
int window_bits = minimum_window_bits(ctx->image_size);
|
||||
@ -4810,6 +4811,7 @@ int spng_encode_image(spng_ctx *ctx, const void *img, size_t len, int fmt, int f
|
||||
|
||||
ctx->image_options.window_bits = window_bits;
|
||||
}
|
||||
#endif
|
||||
|
||||
ret = spng__deflate_init(ctx, &ctx->image_options);
|
||||
if(ret) return encode_err(ctx, ret);
|
||||
|
Loading…
x
Reference in New Issue
Block a user