Add Fast LZMA2 codec dll build; Fix 32-bit warnings

This commit is contained in:
conor42
2018-11-07 14:34:04 +10:00
parent ab10047253
commit 296c91d212
16 changed files with 111 additions and 18 deletions

View File

@@ -190,7 +190,9 @@ STDMETHODIMP CFastEncoder::SetCoderProperties(const PROPID *propIDs,
if (lzma2Props.lzmaProps.pb >= 0)
CHECK_F(FL2_CCtx_setParameter(_encoder, FL2_p_posBits, lzma2Props.lzmaProps.pb));
FL2_CCtx_setParameter(_encoder, FL2_p_omitProperties, 1);
#ifndef NO_XXHASH
FL2_CCtx_setParameter(_encoder, FL2_p_doXXHash, 0);
#endif
return S_OK;
}