This website requires JavaScript.
Explore
Help
Sign In
admin
/
coderforlife-ms-compress
Watch
1
Star
0
Fork
0
You've already forked coderforlife-ms-compress
mirror of
https://github.com/coderforlife/ms-compress
synced
2026-06-08 13:34:55 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
Files
master
coderforlife-ms-compress
/
src
T
Add File
New File
Upload File
Apply Patch
Copy Permalink
Download directory as ZIP
Download directory as TAR.GZ
History
Jeffrey Bush
a0fcab84a7
Merge pull request
#34
from nemequ/master
...
Fix some warnings
2020-01-05 14:12:32 -05:00
..
lznt1_compress.cpp
Avoid ODR violations.
2015-11-04 12:51:04 -08:00
lznt1_decompress.cpp
More fixes for the trailing null-byte support for LZNT1. Now works when output buffer is larger than needed and during streaming.
2017-06-23 17:30:29 -04:00
mscomp.cpp
Added xpress_huff_max_compressed_size function.
2015-03-12 22:47:45 -07:00
xpress_compress.cpp
Decided to have Xpress compression also use a minimal amount of stack memory.
2016-01-19 22:05:51 -08:00
xpress_decompress.cpp
Added LARGE_STACK feature that when disabled (using #define MSCOMP_WITHOUT_LARGE_STACK) will cause various large variables to be heap-based instead of stack-based. Now in use by LZNT1Dictionary (512-768 kb reduction in stack usage) and HuffmanEncoder::CreateCodesSlow (512 kb reduction in stack usage, but only in very rare cases).
2016-01-19 21:46:42 -08:00
xpress_huff_compress.cpp
Fix a warning from GCC about using a possibly uninitialized variable
2017-03-21 12:53:28 -07:00
xpress_huff_decompress.cpp
Fixed
#31
. Was using the ReadBits_Fast method instead of ReadBits in the full bounds-checking loop.
2016-06-21 14:12:27 -07:00