1. 70e3b31 fixed playtests on os-x by Yann Collet · 8 years ago
  2. cb32763 added sizeof CStream and DStream by Yann Collet · 8 years ago
  3. 8baf78a minor coding style by Yann Collet · 8 years ago
  4. 1bee2d5 slight decompression speed improvement by Yann Collet · 8 years ago
  5. 18442c1 minor refactoring by Yann Collet · 8 years ago
  6. 53e17fb updated streaming API by Yann Collet · 8 years ago
  7. 104e5b0 added : streaming decompression API by Yann Collet · 8 years ago
  8. 038d149 fixed compilation with Visual Studio 2005 by inikep · 8 years ago
  9. 917fe18 Implemented repOffset "minus 1" on ll==0 by Yann Collet · 8 years ago
  10. 66f69e5 restore decompression speed on fizzle by Yann Collet · 8 years ago
  11. f714f59 fixed visual warning by Yann Collet · 8 years ago
  12. 761f8db back to normal table cell copy by Yann Collet · 8 years ago
  13. 3c6b808 minor decompression speed gains by Yann Collet · 8 years ago
  14. c00d30f Merge pull request #264 from inikep/dev08 by Yann Collet · 8 years ago
  15. 4c5bbf6 fixed : frame concatenation without checksum by Yann Collet · 8 years ago
  16. 60ba31c zbuff uses ZSTD_compressEnd() by Yann Collet · 8 years ago
  17. c991cc1 new frame end, 32-bits checksums by Yann Collet · 8 years ago
  18. 003c7a8 optimal parser: removed ZSTD_REP_INIT by inikep · 8 years ago
  19. 0a55e7a ZSTD_decompressFrame(): use remainingSize instead of iend - ip by Eric Biggers · 8 years ago
  20. aa6c70b ZSTD_decompressFrame(): pass up error code from ZSTD_decodeFrameHeader() by Eric Biggers · 8 years ago
  21. e4d0265 Replace remaining references to "direct mode" with "single segment mode" by Eric Biggers · 8 years ago
  22. cbc5e9d fixes oob read by Yann Collet · 8 years ago
  23. 7ed5e33 minor comment changes by Yann Collet · 8 years ago
  24. 10b9c13 fixed doc on cLevel default, reported by Oliver Lange by Yann Collet · 8 years ago
  25. f8e7b53 unified encoding types by Yann Collet · 8 years ago
  26. c2e1a68 changed streamNb order to 1-4-4-4 by Yann Collet · 8 years ago
  27. 772d912 more complete support for literals repeat mode by Yann Collet · 8 years ago
  28. 9f2d82d fixed : big-endian decoding by Yann Collet · 8 years ago
  29. 32faf6c fixed conversion warnings by Yann Collet · 8 years ago
  30. 5e45a5f force loop-align to 32 for zstd_decompress by Yann Collet · 8 years ago
  31. 5288ac0 changed filed order by Yann Collet · 8 years ago
  32. 198e6aa Literals header fields use little endian convention by Yann Collet · 8 years ago
  33. 6fa05a2 cBlockSize uses little-endian convention by Yann Collet · 8 years ago
  34. cf05b9d ZSTD_getBlockSizeMax() by Yann Collet · 8 years ago
  35. 972e580 fixed : premature frame end on zero-sized raw block - reported by @ebiggers by Yann Collet · 8 years ago
  36. d158c35 added ZSTD_estimateDCtxSize() by Yann Collet · 8 years ago
  37. 8e0ee68 added ZSTD_sizeofDCtx() by Yann Collet · 8 years ago
  38. 3ae543c added ZSTD_estimateCCtxSize() by Yann Collet · 8 years ago
  39. 722e14b fixed compilation error in decompression module by Yann Collet · 8 years ago
  40. bd10607 updated spec by Yann Collet · 8 years ago
  41. c5fb5b7 support offset > 128 MB by Yann Collet · 8 years ago
  42. 19c27d2 simplified legacy functions, no longer need magic number by Yann Collet · 8 years ago
  43. f323bf7 added : ZSTD_getDecompressedSize() by Yann Collet · 8 years ago
  44. f246cf5 ZSTD_decompress_usingDDict() compatible with Legacy mode by Yann Collet · 8 years ago
  45. 517e1ba fixed dictBuilder issue with HC levels. Reported by Bartosz Taudul. by Yann Collet · 8 years ago
  46. fe07eaa simplified ZSTD_decodeSequence() by Yann Collet · 8 years ago
  47. 9ca7336 updated spec by Yann Collet · 8 years ago
  48. f9cac7a Added GNU separator `--`, to specifies that all following arguments are necessary file names (and not commands). Suggested by @chipturner (#230) by Yann Collet · 8 years ago
  49. 23f05cc updated specifications by Yann Collet · 8 years ago
  50. 2fa9904 update specification and comments by Yann Collet · 8 years ago
  51. d4f4e58 fixed ZSTD_decompressBlock() using multiple blocks by Yann Collet · 8 years ago
  52. e4811ba Modified : ZSTD_createDDict() accepts dictionary < 8 bytes in pure content mode (reported by @chipturner) by Yann Collet · 8 years ago
  53. 06d9a73 minor refactor, using `WILDCOPY_OVERLENGTH` macro instead of hard-coded 8 by Yann Collet · 8 years ago
  54. 4948f27 make room for reserved "information bit" in frame header by Yann Collet · 8 years ago
  55. 80d033f fixed ptr arithmetic warning by Yann Collet · 8 years ago
  56. 736d419 strengthened dict loading on decompresson side by Yann Collet · 8 years ago
  57. 8e36a9c decoder restores repOffsets from dictionary by Yann Collet · 8 years ago
  58. d059092 fixed conversion warnings by Yann Collet · 8 years ago
  59. 4266c0a adding inter-blocks rep-offsets by Yann Collet · 8 years ago
  60. cd98f93 Fixed decompression issue with invalid data by Yann Collet · 8 years ago
  61. 37fece2 enable repeat-entropic-stats mode by Yann Collet · 8 years ago
  62. d60a5bf Literal decompression builds Huffman tables within shared space (for later re-use) by Yann Collet · 8 years ago
  63. 289bbd5 Updated huff0 by Yann Collet · 8 years ago
  64. 9dd1274 `litBlockType_t` is an `enum` by Yann Collet · 8 years ago
  65. 662a541 updated huff0 - now generates a common HUF_DTable type for all decoding tables by Yann Collet · 8 years ago
  66. 302fb53 Removed `ZSTD_*_usingPrepared?Ctx()` declaration from public space by Yann Collet · 8 years ago
  67. 81e13ef first implementation of the new dictionary API (untested) by Yann Collet · 8 years ago
  68. 9d504ae Added decoding of RLE blocks by Yann Collet · 8 years ago
  69. 673f0d7 new frame format, allowing custom window size by Yann Collet · 8 years ago
  70. d0e2cd1 Merged `fse_static` into `fse.h` . Now requires `FSE_STATIC_LINKING_ONLY` macro. by Yann Collet · 8 years ago
  71. 130fe11 merged `huf_static.h` into `huf.h` . Requires `HUF_STATIC_LINKING_ONLY` macro. by Yann Collet · 8 years ago
  72. 198d127 minor comment change (unfinished description of new header format) by Yann Collet · 8 years ago
  73. f4f5aff restore ZBUFF full-block-size, for better performance on small input by Yann Collet · 8 years ago
  74. ab7b6f1 Merge pull request #198 from inikep/dev070 by Yann Collet · 8 years ago
  75. 3640396 fixed: deallocation of structures in case of error in ZBUFF_createCCtx and ZBUFF_createDCtx by inikep · 8 years ago
  76. fe48775 minor decoder code refactoring by Yann Collet · 8 years ago
  77. 3763c77 defaultCustomNULL replaced with defaultCustomMem by inikep · 8 years ago
  78. 36fac00 removed calloc calls from lib/ by inikep · 8 years ago
  79. db2f540 added defaultCustomNULL by inikep · 8 years ago
  80. 2866951 opaque parameter for custom memory allocation functions by inikep · 8 years ago
  81. 9242816 fparamsPtr->windowLog==0 means that a frame is skippable by inikep · 8 years ago
  82. 13f42d9 VS2010 project: reverted zstdlib.rc by inikep · 8 years ago
  83. 5c27717 Merge remote-tracking branch 'refs/remotes/Cyan4973/dev070' into dev070 by inikep · 8 years ago
  84. 202844e fixed zbufftest : by Yann Collet · 8 years ago
  85. 8e3a36a decompression validates frame content checksum by Yann Collet · 8 years ago
  86. a6b9420 Merge remote-tracking branch 'refs/remotes/origin/dev' into dev070 by inikep · 8 years ago
  87. f2a3b6e added : frame content checksum by Yann Collet · 8 years ago
  88. 43aa9fe fixed skippable frame by inikep · 8 years ago
  89. f772bf5 support for skippable frames by inikep · 8 years ago
  90. 3000952 fuzzer tests dictBuilder. by Yann Collet · 8 years ago
  91. c46fb92 added dictionary ID (incomplete) by Yann Collet · 8 years ago
  92. 13ba880 added ZBUFF_createCCtx_advanced and ZBUFF_createDCtx_advanced by inikep · 8 years ago
  93. 107e243 added ZSTD_createDCtx_advanced by inikep · 8 years ago
  94. ccd6e86 improved decoding speed by inlining x_isError() functions by Yann Collet · 8 years ago
  95. b19d5d7 restored inline for better decompression speed by Yann Collet · 8 years ago
  96. bd39d54 zbuff supports byte-by-byte decompression scenarios by Yann Collet · 8 years ago
  97. 18dedec Support legacy ZSTD_decompress_usingDict() (starting v0.5+) by Yann Collet · 8 years ago
  98. 6f9c056 Fixed BMI behavior on x86 and x32 targets, reported by @tycho (#178) by Yann Collet · 8 years ago
  99. db39643 introduced ZSTD_NODECOMPRESS to link only compressor by inikep · 8 years ago
  100. a1febea Error functions moved to common/zstd_common.c by inikep · 8 years ago