ladybird/Libraries/LibCompress
asynts 8bbb7e25e6 LibCompress: Turn the DEFLATE implementation into a stream.
Previously, the implementation would produce one Vector<u8> which
would contain the whole decompressed data. That can be a lot and
even exhaust memory.

With these changes it is still necessary to store the whole input data
in one piece (I am working on this next,) but the output can be read
block by block. (That's not optimal either because blocks can be
arbitrarily large, but it's good for now.)
2020-08-20 16:28:31 +02:00
..
CMakeLists.txt LibCompress: Add LibCompress 2020-08-04 11:27:07 +02:00
Deflate.cpp LibCompress: Turn the DEFLATE implementation into a stream. 2020-08-20 16:28:31 +02:00
Deflate.h LibCompress: Turn the DEFLATE implementation into a stream. 2020-08-20 16:28:31 +02:00
Zlib.cpp LibCompress: Turn the DEFLATE implementation into a stream. 2020-08-20 16:28:31 +02:00
Zlib.h LibCompress: Turn the DEFLATE implementation into a stream. 2020-08-20 16:28:31 +02:00