Fixed RLE strategy

This commit is contained in:
Vitaly Puzrin 2014-02-19 22:17:44 +04:00
parent 917d665a4c
commit 9e18b276cd
2 changed files with 2 additions and 4 deletions

View file

@ -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;

View file

@ -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);
});