aboutsummaryrefslogtreecommitdiff
path: root/contrib/vstudio (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Enable dictionary setting in middle of stream, and keeping the dictionary.Mark Adler2011-12-082-0/+2
| | | | | | | | | | | | | | | | | | | This patch adds the deflateResetKeep() function to retain the sliding window for the next deflate operation, and fixes an inflateResetKeep() problem that came from inflate() not updating the window when the stream completed. This enables constructing and decompressing a series of concatenated deflate streams where each can depend on the history of uncompressed data that precedes it. This generalizes deflateSetDictionary() and inflateSetDictionary() to permit setting the dictionary in the middle of a stream for raw deflate and inflate. This in combination with the Keep functions enables a scheme for updating files block by block with the transmission of compressed data, where blocks are sent with deflateResetKeep() to retain history for better compression, and deflateSetDictionary() is used for blocks already present at the receiver to skip compression but insert that data in the history, again for better compression. The corresponding inflate calls are done on the receiver side.
* Add undocumented inflateResetKeep() function for CAB file decoding.Mark Adler2011-10-072-8/+10
| | | | | | | | The Microsoft CAB file format compresses each block with completed deflate streams that depend on the sliding window history of the previous block in order to decode. inflateResetKeep() does what inflateReset() does, except the sliding window history from the previous inflate operation is retained.
* Merge vestigial vsnprintf determination from zutil.h to gzguts.h.Mark Adler2011-10-022-2/+8
| | | | | | | | | This also moves some of the same from zconf.h to gzguts.h. A new function, gzflags(), was created to pass the compilation flags related to vsnprintf usage back to zlibCompileFlags() in zutil.c. In the process, various compiler configuration files were updated to include gzflags(), as well as the new gzgetc_() function added when the gzgetc() macro was introduced in a previous patch.
* Change version numbers to 1.2.5.2 and release datesMark Adler2011-09-112-8/+8
| | | | | | Also added "-motley" to ZLIB_VERSION in zlib.h, so that versions in-between 1.2.5.1 and 1.2.5.2 that are pulled down from github can be identified as such if bugs are reported on them.
* zlib 1.2.5.1v1.2.5.1Mark Adler2011-09-114-6/+8
|
* zlib 1.2.5v1.2.5Mark Adler2011-09-092-6/+6
|
* zlib 1.2.4.5v1.2.4.5Mark Adler2011-09-092-6/+6
|
* zlib 1.2.4.4v1.2.4.4Mark Adler2011-09-092-6/+6
|
* zlib 1.2.4.3v1.2.4.3Mark Adler2011-09-092-6/+6
|
* zlib 1.2.4.2v1.2.4.2Mark Adler2011-09-092-6/+6
|
* zlib 1.2.4.1v1.2.4.1Mark Adler2011-09-092-6/+6
|
* zlib 1.2.4v1.2.4Mark Adler2011-09-092-12/+0
|
* zlib 1.2.4-pre1v1.2.4-pre1Mark Adler2011-09-0918-842/+359
|
* zlib 1.2.3.9v1.2.3.9Mark Adler2011-09-0939-1566/+3668
|
* zlib 1.2.3.8v1.2.3.8Mark Adler2011-09-092-5/+5
|
* zlib 1.2.3.7v1.2.3.7Mark Adler2011-09-091-3/+3
|
* zlib 1.2.3.6v1.2.3.6Mark Adler2011-09-091-4/+4
|
* zlib 1.2.3.5v1.2.3.5Mark Adler2011-09-095-7/+53
|
* zlib 1.2.3.4v1.2.3.4Mark Adler2011-09-091-3/+3
|
* zlib 1.2.3.3v1.2.3.3Mark Adler2011-09-091-3/+3
|
* zlib 1.2.3.2v1.2.3.2Mark Adler2011-09-091-4/+4
|
* zlib 1.2.3.1v1.2.3.1Mark Adler2011-09-091-3/+3
|
* zlib 1.2.3v1.2.3Mark Adler2011-09-0920-70/+5244
|
* zlib 1.2.2.4v1.2.2.4Mark Adler2011-09-091-3/+3
|
* zlib 1.2.2.3v1.2.2.3Mark Adler2011-09-093-3/+3
|
* zlib 1.2.2.2v1.2.2.2Mark Adler2011-09-092-4/+4
|
* zlib 1.2.2.1v1.2.2.1Mark Adler2011-09-091-3/+3
|
* zlib 1.2.2v1.2.2Mark Adler2011-09-091-3/+3
|
* zlib 1.2.1.2v1.2.1.2Mark Adler2011-09-091-3/+3
|
* zlib 1.2.0.8v1.2.0.8Mark Adler2011-09-091-1/+2
|
* zlib 1.2.0.5v1.2.0.5Mark Adler2011-09-0918-2595/+86
|
* zlib 1.2.0.3v1.2.0.3Mark Adler2011-09-095-18/+35
|
* zlib 1.2.0.2v1.2.0.2Mark Adler2011-09-095-9/+14
|
* zlib 1.2.0.1v1.2.0.1Mark Adler2011-09-0917-0/+3657