From: Yann Collet Date: Mon, 28 Oct 2019 20:43:28 +0000 (-0700) Subject: Merge branch 'dev' into ahmed_file X-Git-Tag: v1.4.5^2~141^2~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a78a8759a23bfab7e797741cf4b2a15d590ca520;p=thirdparty%2Fzstd.git Merge branch 'dev' into ahmed_file --- a78a8759a23bfab7e797741cf4b2a15d590ca520 diff --cc doc/zstd_manual.html index 21ba000cc,43c5555b8..7fa1a8d19 --- a/doc/zstd_manual.html +++ b/doc/zstd_manual.html @@@ -962,9 -967,9 +967,15 @@@ size_t ZSTD_sizeof_DDict(const ZSTD_DDi * tables. However, this model incurs no start-up cost (as long as the * working context's tables can be reused). For small inputs, this can be * faster than copying the CDict's tables. + * + * - The CDict's tables are not used at all, and instead we use the working + * context alone to reload the dictionary and use params based on the source ++ * size. See ZSTD_compress_insertDictionary() and ZSTD_compress_usingDict(). ++ * This method is effective when the dictionary sizes are very small relative ++ * to the input size, and the input size is fairly large to begin with. + * + * - The CDict's tables are not used at all, and instead we use the working + * context alone to reload the dictionary and use params based on the source * size. See ZSTD_compress_insertDictionary() and ZSTD_compress_usingDict(). * This method is effective when the dictionary sizes are very small relative * to the input size, and the input size is fairly large to begin with.