From fba3d150aaac85ed69fce92bd823133e00a9f7c4 Mon Sep 17 00:00:00 2001 From: Christian Schneider Date: Thu, 29 Dec 2016 18:08:57 +0100 Subject: [PATCH] Remove old LZMA preset code --- contrib/liblzma/compress_easy_mt.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/contrib/liblzma/compress_easy_mt.cpp b/contrib/liblzma/compress_easy_mt.cpp index 9c3612a..a7ebb21 100644 --- a/contrib/liblzma/compress_easy_mt.cpp +++ b/contrib/liblzma/compress_easy_mt.cpp @@ -99,10 +99,7 @@ bool init_encoder_mt(lzma_stream *strm, int threads, uint64_t max_memory, uint64 // information how to choose a reasonable timeout. mt .timeout = 110; - // Use the default preset (6) for LZMA2. // To use a preset, filters must be set to NULL. - mt .preset = //LZMA_PRESET_DEFAULT; //UINT32_C(8); - UINT32_C(6);// | LZMA_PRESET_EXTREME; // 9 OR 9e mt.filters = NULL; mt.check = LZMA_CHECK_CRC32;