mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-11 00:07:09 -06:00
Update to Fast LZMA2 1.0.0
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
*/
|
||||
|
||||
#include "mem.h" /* U32, U64 */
|
||||
#include "fl2threading.h"
|
||||
#include "fl2_threading.h"
|
||||
#include "fl2_internal.h"
|
||||
#include "radix_internal.h"
|
||||
|
||||
@@ -52,9 +52,8 @@ void RMF_bitpackLimitLengths(FL2_matchTable* const tbl, size_t const index)
|
||||
SetNull(index - 1);
|
||||
for (U32 length = 2; length < RADIX_MAX_LENGTH && length <= index; ++length) {
|
||||
U32 const link = tbl->table[index - length];
|
||||
if (link != RADIX_NULL_LINK) {
|
||||
if (link != RADIX_NULL_LINK)
|
||||
tbl->table[index - length] = (MIN(length, link >> RADIX_LINK_BITS) << RADIX_LINK_BITS) | (link & RADIX_LINK_MASK);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user