Don't set lc=4 with --extreme.
authorLasse Collin <lasse.collin@tukaani.org>
Sat, 4 Sep 2010 19:16:28 +0000 (22:16 +0300)
committerLasse Collin <lasse.collin@tukaani.org>
Sat, 4 Sep 2010 19:16:28 +0000 (22:16 +0300)
This should reduce the cases where --extreme makes
compression worse. On the other hand, some other
files may now benefit slightly less from --extreme.

src/liblzma/lzma/lzma_encoder_presets.c

index 2aa8fd0..5c7dfcd 100644 (file)
@@ -46,7 +46,6 @@ lzma_lzma_preset(lzma_options_lzma *options, uint32_t preset)
        }
 
        if (flags & LZMA_PRESET_EXTREME) {
-               options->lc = 4; // FIXME?
                options->mode = LZMA_MODE_NORMAL;
                options->mf = LZMA_MF_BT4;
                if (level == 3 || level == 5) {