1. 5149767 Add NULL Checks by W. Felix Handte · 7 years ago
  2. 299f349 Simpler Ternary Statements by W. Felix Handte · 7 years ago
  3. f9fef25 Renames and Comment Fixes by W. Felix Handte · 7 years ago
  4. 1df5d91 Hoist LZ4F Dictionary Setup into Helper LZ4F_applyCDict() by W. Felix Handte · 7 years ago
  5. 3ecc1d7 Minor Style Fixes by W. Felix Handte · 7 years ago
  6. e34716c Preserve currentOffset==0 When Possible by W. Felix Handte · 7 years ago
  7. 5f8967b Specialize _extState() for Clean Ctx Rather Than Calling _safeExtState() by W. Felix Handte · 7 years ago
  8. 6716325 Remove Switch In Favor of Ternary Statement by W. Felix Handte · 7 years ago
  9. b4335a6 Further Avoid a dictionary==NULL Check by W. Felix Handte · 7 years ago
  10. 64bcbf4 Optimize Dict Check Condition by W. Felix Handte · 7 years ago
  11. b78cf67 Move to 4KB Cut-Off by W. Felix Handte · 7 years ago
  12. 00eadad Reset Table on Inputs Larger than 2KB by W. Felix Handte · 7 years ago
  13. d571d0c Avoid DictSmall Checks By Strategically Bumping CurrentOffset by W. Felix Handte · 7 years ago
  14. 1c4601d Restore DictIssue Check by W. Felix Handte · 7 years ago
  15. d6ed9a7 Avoid dictionary == NULL Check by W. Felix Handte · 7 years ago
  16. efc419a Replace calloc() Calls With malloc() Where Possible by W. Felix Handte · 7 years ago
  17. 80790c5 Copy the Dict Table Into the Context for Large Compressions by W. Felix Handte · 7 years ago
  18. 9dcd9ab Make LZ4F_compressFrame_usingCDict Take a Compression Context by W. Felix Handte · 7 years ago
  19. 14ce912 Switch Current Offset to 1 Only When in External Dictionary Context Mode by W. Felix Handte · 7 years ago
  20. cea09d6 Hoist Table Reset One Level Up by W. Felix Handte · 7 years ago
  21. 68c6bd1 Set Dictionary Context Pointer Rather than Copying the Context In by W. Felix Handte · 7 years ago
  22. 73cc393 Lookup Matches in Separate Dictionary Context by W. Felix Handte · 7 years ago
  23. 62cb52b Initialize Current Offset to 1 by W. Felix Handte · 7 years ago
  24. 7060bca Only Re-Alloc / Reset When Needed When Switching Between Regular and High Compression Modes by W. Felix Handte · 7 years ago
  25. b3628cb Avoid Resetting the Context When Possible by W. Felix Handte · 7 years ago
  26. aa36e11 Const-ify Table Arg to LZ4_getPosition(OnHash) by W. Felix Handte · 7 years ago
  27. d6a3024 Add LZ4_compress_fast_safeExtState Function by W. Felix Handte · 7 years ago
  28. 5709891 Add a Table Type Field to LZ4_stream_t by W. Felix Handte · 7 years ago
  29. 6933f5a Remove Obsolete Stream Functions to Free Space in LZ4_stream_t by W. Felix Handte · 7 years ago
  30. 6d156fe Allow Empty Dictionaries by W. Felix Handte · 7 years ago
  31. b5233d3 updated LZ4F_compressBound() documentation by Yann Collet · 7 years ago
  32. 860ff77 Merge pull request #478 from lz4/mergeOpt by Yann Collet · 7 years ago
  33. 39fda9a bumped version number to v1.8.2 by Yann Collet · 7 years ago
  34. ba11538 update code comment on LZ4 streaming interface by Yann Collet · 7 years ago
  35. 550b408 merge lz4opt.h into lz4hc.c by Yann Collet · 7 years ago
  36. 7173a63 edge case : compress up to end-mflimit (12 bytes) by Yann Collet · 7 years ago
  37. 71e16fa Merge pull request #471 from lz4/fasterHC by Yann Collet · 7 years ago
  38. 25b16e8 added one assert() by Yann Collet · 7 years ago
  39. d74f079 update API doc regarding double-buffer strategy by Yann Collet · 7 years ago
  40. d3a1339 slight hc speed benefit (~+1%) by Yann Collet · 7 years ago
  41. 219abab removed LZ4_copy8 by Yann Collet · 7 years ago
  42. 2b674bf slightly improved hc compression speed (+~1-2%) by Yann Collet · 7 years ago
  43. 3ad3b0f slightly improved decompression speed (~+1-2%) by Yann Collet · 7 years ago
  44. c4671be intel: do not use __attribute__((packed)) on Windows by Ben Boeckel · 7 years ago
  45. ea25250 fixed code comment as detected in #466 by Yann Collet · 7 years ago
  46. e832a3d Clarify the requirements of the LZ4 streaming API by Nick Terrell · 7 years ago
  47. 5fd3ac7 Merge branch 'dev' into frameCompress by Yann Collet · 7 years ago
  48. 87fb7a1 refactored frameCompress example by Yann Collet · 7 years ago
  49. c129f48 Always prefer c++14 attributes if available by Asger Hautop Drewsen · 7 years ago
  50. 865bd83 Ensure LZ4_DEPRECATED("...") is before LZ4LIB_API by Asger Hautop Drewsen · 7 years ago
  51. 30e92f3 [lz4hc] level == 0 means default, not level 1 by Nick Terrell · 7 years ago
  52. 75b81bb Change file format back to ASCII (from UTF-8) by Po-Chuan Hsieh · 7 years ago
  53. 5e7780d lz4frame : removed some intermediate stage from LZ4F_decompress() by Yann Collet · 7 years ago
  54. 18b4c66 ensure a ptr is non-null by Yann Collet · 7 years ago
  55. 4d61ebc modified formulation for LZ4F_compressBound() by Yann Collet · 7 years ago
  56. 47bf1a9 Fix lz4 version by Po-Chuan Hsieh · 7 years ago
  57. c423dc2 updated LZ4F_decompress() documentation by Yann Collet · 7 years ago
  58. 58199f1 Merge pull request #443 from terrelln/440 by Yann Collet · 7 years ago
  59. ebef34f Add Option to Make lz4frame_static.h Functions Visible in Shared Objects by W. Felix Handte · 7 years ago
  60. 0b203b0 Merge pull request #434 from lz4/pattern by Yann Collet · 7 years ago
  61. c2dd686 [lz4f] Skip memcpy() on empty dictionary by Nick Terrell · 7 years ago
  62. 7d2f30c lz4opt supports _destSize by Yann Collet · 7 years ago
  63. 9753ac4 conditional pattern analysis by Yann Collet · 7 years ago
  64. 55da545 new level 10 by Yann Collet · 7 years ago
  65. 6bbe45e remove `register` keyword by Yann Collet · 7 years ago
  66. da8bed4 API : changed a few variables' names for clarity by Yann Collet · 7 years ago
  67. dac2608 Merge pull request #416 from lz4/newopt by Yann Collet · 7 years ago
  68. dc3ed5b added code comments by Yann Collet · 7 years ago
  69. 63f6039 added constant TRAILING_LITERALS by Yann Collet · 7 years ago
  70. f93b595 lz4opt: simplified match finder invocation to LZ4HC_FindLongerMatch() by Yann Collet · 7 years ago
  71. fa03a9d added code comments by Yann Collet · 7 years ago
  72. b07d362 fixed LZ4HC_reverseCountPattern() by Yann Collet · 7 years ago
  73. 897f5e9 removed the ip++ at the beginning of block by Yann Collet · 7 years ago
  74. 71fd08c removed legacy version of LZ4HC_InsertAndFindBestMatch() by Yann Collet · 7 years ago
  75. c49f66f ensure `pattern` is a 1-byte repetition by Yann Collet · 7 years ago
  76. 5512a5f removed useless `(1 && ...)` condition by Yann Collet · 7 years ago
  77. 7130bfe improved LZ4HC_reverseCountPattern() : by Yann Collet · 7 years ago
  78. a004c1f fixed LZ4HC_countPattern() by Yann Collet · 7 years ago
  79. 9221419 added LZ4_FORCEINLINE to counter gcc regression by Yann Collet · 7 years ago
  80. d51f046 2-stages LZ4_count by Yann Collet · 7 years ago
  81. 4fed595 Only ignore with C++17 by Sylvestre Ledru · 7 years ago
  82. cca7618 When building with a C++ compiler, remove the 'register' keyword to silent a warning by Sylvestre Ledru · 7 years ago
  83. aa99163 fixed minor static analyzer warning by Yann Collet · 7 years ago
  84. 89821ac minor comment edit by Yann Collet · 7 years ago
  85. 1025546 unified HC levels by Yann Collet · 7 years ago
  86. a1f4a0d moved ctx->end handling from parsers by Yann Collet · 7 years ago
  87. c9bbad5 removed ctx->searchNum by Yann Collet · 7 years ago
  88. e2eca62 LZ4_compress_HC_continue_destSize() now compatible with optimal parser by Yann Collet · 7 years ago
  89. 3b222d2 removes matches[] table by Yann Collet · 7 years ago
  90. 320e1d5 removed useless parameter from hash chain matchfinder by Yann Collet · 7 years ago
  91. 81667a1 removed code and reference to binary tree match finder by Yann Collet · 7 years ago
  92. 82c1aed improved level 11 speed by Yann Collet · 7 years ago
  93. 890c055 optimized skip strategy for level 12 by Yann Collet · 7 years ago
  94. 05d78eb new level 11 uses 512 attempts by Yann Collet · 7 years ago
  95. a1c5343 more generic skip formula by Yann Collet · 7 years ago
  96. e06cb03 small adaptations for intermediate level 11 by Yann Collet · 7 years ago
  97. 4b81885 partial search, while preserving compression ratio by Yann Collet · 7 years ago
  98. bd992f1 searching match leading strictly farther does not work by Yann Collet · 7 years ago
  99. 8e16eb0 fixed last lost bytes in maximal mode by Yann Collet · 7 years ago
  100. 0ff4df1 changed strategy : opt[] path is complete after each match by Yann Collet · 7 years ago