formatting
parent
3fa4daaa55
commit
053a35fd64
|
@ -3259,8 +3259,8 @@ ZSTD_CDict* ZSTD_createCDict(const void* dict, size_t dictSize, int compressionL
|
||||||
{
|
{
|
||||||
ZSTD_compressionParameters cParams = ZSTD_getCParams(compressionLevel, 0, dictSize);
|
ZSTD_compressionParameters cParams = ZSTD_getCParams(compressionLevel, 0, dictSize);
|
||||||
ZSTD_CDict* cdict = ZSTD_createCDict_advanced(dict, dictSize,
|
ZSTD_CDict* cdict = ZSTD_createCDict_advanced(dict, dictSize,
|
||||||
ZSTD_dlm_byCopy, ZSTD_dct_auto,
|
ZSTD_dlm_byCopy, ZSTD_dct_auto,
|
||||||
cParams, ZSTD_defaultCMem);
|
cParams, ZSTD_defaultCMem);
|
||||||
cdict->compressionLevel = compressionLevel == 0 ? ZSTD_CLEVEL_DEFAULT : compressionLevel;
|
cdict->compressionLevel = compressionLevel == 0 ? ZSTD_CLEVEL_DEFAULT : compressionLevel;
|
||||||
return cdict;
|
return cdict;
|
||||||
}
|
}
|
||||||
|
@ -3353,8 +3353,8 @@ size_t ZSTD_compressBegin_usingCDict_advanced(
|
||||||
params.cParams = (pledgedSrcSize < ZSTD_USE_CDICT_PARAMS_CUTOFF) || (cdict->compressionLevel == 0) ?
|
params.cParams = (pledgedSrcSize < ZSTD_USE_CDICT_PARAMS_CUTOFF) || (cdict->compressionLevel == 0) ?
|
||||||
ZSTD_getCParamsFromCDict(cdict)
|
ZSTD_getCParamsFromCDict(cdict)
|
||||||
: ZSTD_getCParams(cdict->compressionLevel,
|
: ZSTD_getCParams(cdict->compressionLevel,
|
||||||
pledgedSrcSize,
|
pledgedSrcSize,
|
||||||
cdict->dictContentSize);
|
cdict->dictContentSize);
|
||||||
/* Increase window log to fit the entire dictionary and source if the
|
/* Increase window log to fit the entire dictionary and source if the
|
||||||
* source size is known. Limit the increase to 19, which is the
|
* source size is known. Limit the increase to 19, which is the
|
||||||
* window log for compression level 1 with the largest source size.
|
* window log for compression level 1 with the largest source size.
|
||||||
|
|
Loading…
Reference in New Issue