Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-10-23 | liblzma: Fix a deadlock in the threaded encoder. | Lasse Collin | 1 | -1/+3 | |
It was triggered when reinitializing the encoder, e.g. when encoding two files. | |||||
2011-04-11 | liblzma: Add lzma_stream_encoder_mt() for threaded compression. | Lasse Collin | 1 | -0/+1011 | |
This is the simplest method to do threading, which splits the uncompressed data into blocks and compresses them independently from each other. There's room for improvement especially to reduce the memory usage, but nevertheless, this is a good start. |