aboutsummaryrefslogtreecommitdiff
path: root/src/liblzma/common/outqueue.c (follow)
AgeCommit message (Collapse)AuthorFilesLines
2011-04-11liblzma: Add lzma_stream_encoder_mt() for threaded compression.Lasse Collin1-0/+180
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.