mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-04 10:50:59 +01:00
Fixed RLE strategy
This commit is contained in:
parent
917d665a4c
commit
9e18b276cd
2 changed files with 2 additions and 4 deletions
|
@ -855,8 +855,6 @@ function deflate_rle(s, flush) {
|
|||
/*** _tr_tally_dist(s, 1, s.match_length - MIN_MATCH, bflush); ***/
|
||||
bflush = trees._tr_tally(s, 1, s.match_length - MIN_MATCH);
|
||||
|
||||
s.lookahead -= s.match_length;
|
||||
|
||||
s.lookahead -= s.match_length;
|
||||
s.strstart += s.match_length;
|
||||
s.match_length = 0;
|
||||
|
|
|
@ -135,7 +135,7 @@ describe('Deflate memLevel', function () {
|
|||
});
|
||||
|
||||
|
||||
describe.skip('Deflate strategy', function () {
|
||||
describe('Deflate strategy', function () {
|
||||
|
||||
it('Z_DEFAULT_STRATEGY', function(done) {
|
||||
testDeflate(zlib.createDeflate, pako.deflate, samples, { strategy: 0 }, done);
|
||||
|
@ -149,7 +149,7 @@ describe.skip('Deflate strategy', function () {
|
|||
it('Z_RLE', function(done) {
|
||||
testDeflate(zlib.createDeflate, pako.deflate, samples, { strategy: 3 }, done);
|
||||
});
|
||||
it('Z_FIXED', function(done) {
|
||||
it.skip('Z_FIXED', function(done) {
|
||||
testDeflate(zlib.createDeflate, pako.deflate, samples, { strategy: 4 }, done);
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue