mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-04 19:01:00 +01:00
parent
9709958d84
commit
1154023108
1 changed files with 4 additions and 3 deletions
|
@ -1666,9 +1666,10 @@ const deflate = (strm, flush) => {
|
||||||
*/
|
*/
|
||||||
if (strm.avail_in !== 0 || s.lookahead !== 0 ||
|
if (strm.avail_in !== 0 || s.lookahead !== 0 ||
|
||||||
(flush !== Z_NO_FLUSH && s.status !== FINISH_STATE)) {
|
(flush !== Z_NO_FLUSH && s.status !== FINISH_STATE)) {
|
||||||
let bstate = (s.strategy === Z_HUFFMAN_ONLY) ? deflate_huff(s, flush) :
|
let bstate = s.level === 0 ? deflate_stored(s, flush) :
|
||||||
(s.strategy === Z_RLE ? deflate_rle(s, flush) :
|
s.strategy === Z_HUFFMAN_ONLY ? deflate_huff(s, flush) :
|
||||||
configuration_table[s.level].func(s, flush));
|
s.strategy === Z_RLE ? deflate_rle(s, flush) :
|
||||||
|
configuration_table[s.level].func(s, flush);
|
||||||
|
|
||||||
if (bstate === BS_FINISH_STARTED || bstate === BS_FINISH_DONE) {
|
if (bstate === BS_FINISH_STARTED || bstate === BS_FINISH_DONE) {
|
||||||
s.status = FINISH_STATE;
|
s.status = FINISH_STATE;
|
||||||
|
|
Loading…
Add table
Reference in a new issue