summaryrefslogtreecommitdiff
path: root/deflate_medium.c
AgeCommit message (Collapse)Author
2014-10-09Clean up likely/unlikely definitionshansr
2014-07-26deflate: avoid use of uninitialized variableNathan Kidd
(Note emit_match() doesn't currently use the value at all.) Fixes #4
2014-07-26deflate: add new deflate_medium strategyJim Kukunas
From: Arjan van de Ven <arjan@linux.intel.com> As the name suggests, the deflate_medium deflate strategy is designed to provide an intermediate strategy between deflate_fast and deflate_slow. After finding two adjacent matches, deflate_medium scans left from the second match in order to determine whether a better match can be formed. Fixes #2