boludoz / lz4

Automatically exported from code.google.com/p/lz4
Other
0 stars 0 forks source link

Block dependency does not work #127

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
From Tino Lange :

The commandline tool is not able to produce files that use block dependency, 
even though I have used -BD:
"-BD    : Block dependency (improve compression ratio)"
reason is that the line

    case 'D': LZ4IO_setBlockMode(independentBlocks); argument++; break;

must read

    case 'D': LZ4IO_setBlockMode(chainedBlocks); argument++; break;

otherwise "-BD" simply has no effect. This is in programs/lz4cli.c.

Original issue reported on code.google.com by yann.col...@gmail.com on 26 Mar 2014 at 9:50

GoogleCodeExporter commented 9 years ago
The following release candidate solves the issue.

Original comment by yann.col...@gmail.com on 26 Mar 2014 at 9:53

Attachments:

GoogleCodeExporter commented 9 years ago
Fixed into r117

Original comment by yann.col...@gmail.com on 22 Apr 2014 at 11:07