Davidah121 / SMPL

A static C++ library that encompasses all of the tools I have made to make development easier.
1 stars 0 forks source link

Compression as a stream #137

Closed Davidah121 closed 3 months ago

Davidah121 commented 1 year ago

Allow compression and decompression in chunks for large amounts of data. Prevents cases where the data could exceed the available amount of ram.

Davidah121 commented 1 year ago

Added for RLE and LZW. Working on LZ77 family (LZ77, LZSS, DEFLATE). Improved runtime of LZW. Will also improve runtime of LZ77 family which will close issue #117.