dummy levels 22-25

This commit is contained in:
inikep
2016-02-22 17:00:04 +01:00
parent 6b3739c8e5
commit 9f754d23dc
3 changed files with 14 additions and 1 deletions
+1
View File
@@ -50,6 +50,7 @@ FORCE_INLINE U32 ZSTD_GETPRICE(seqStore_t* seqStorePtr, U32 litLength, const BYT
return price + 1 + ((seqStorePtr->litSum>>4) / seqStorePtr->litLengthSum) + (matchLength==0);
return price + ZSTD_getLiteralPrice(seqStorePtr, litLength, literals) + ((seqStorePtr->litSum>>4) / seqStorePtr->litLengthSum) + (matchLength==0);
// return price + ZSTD_getLiteralPrice(seqStorePtr, litLength, literals);
}