jensschmidbauer

Results 4 comments of jensschmidbauer

Hi Adam, I ran into the same problem trying to decompress the big bz2 files at http://planet.openstreetmap.org/ . I also tested several libraries, all with the same effect that exactly...

Hi again, okay, the solution (for my case) is already available. I found the optional decompressContacted (typo? its called decompressConcatenated in CBZip2InputStream which makes more sense) flag in BZip2Stream while...

Hi @rpm61 it's the last parameter in [BZip2Stream](https://github.com/adamhathcock/sharpcompress/blob/master/src/SharpCompress/Compressors/BZip2/BZip2Stream.cs#L18)'s constructor. The [ReaderFactory](https://github.com/adamhathcock/sharpcompress/blob/master/src/SharpCompress/Readers/ReaderFactory.cs#L61) (as used by agoretsky) does not provide this parameter, so the default of false is used. But it has...

@adamhathcock As far as I understand, the flag is required, wenn the data contains more than one block (i.e. max. 900,000 bytes uncompressed) of data. But I cannot guarantee there...