From 837cd635c5aacc5c409b886ea02b28c80885765f Mon Sep 17 00:00:00 2001 From: x Date: Tue, 21 Mar 2023 13:23:23 +0100 Subject: [PATCH] TurboPFor: general purpose compressors --- iccodec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iccodec.c b/iccodec.c index 1f6962b..d5d449d 100644 --- a/iccodec.c +++ b/iccodec.c @@ -332,7 +332,7 @@ unsigned lzv8zdec(unsigned char *in, unsigned inlen, unsigned char *out, unsigne unsigned lztpenc(unsigned char *in, unsigned inlen, unsigned char *out, unsigned outsize, unsigned esize, unsigned char *tmp, int codid, int codlev, char *codprm, unsigned bsize) { ICCBEG; tpenc(ip, iplen, tmp, esize); - unsigned clen = ctou32(op) = codecenc(tmp, iplen, op+4, outsize, codid, codlev, codprm); AC(clen > 0 && clen <= iplen, "#lztpenc %u ", clen); + unsigned clen = ctou32(op) = codecenc(tmp, iplen, op+4, outsize, codid, codlev, codprm); //AC(clen > 0 && clen <= iplen, "#lztpenc %u ", clen); op += 4 + clen; ICCEND; return op - out;