diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2008-09-27 19:09:21 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2008-09-27 19:09:21 +0300 |
commit | 1dcecfb09b55157b8653d747963069c8bed74f04 (patch) | |
tree | 81fa1f1e8bf6871981970ca826d897db6f33527b /debug/memusage.c | |
parent | Added 7z2lzma.bash. (diff) | |
download | xz-1dcecfb09b55157b8653d747963069c8bed74f04.tar.xz |
Some API changes, bug fixes, cleanups etc.
Diffstat (limited to '')
-rw-r--r-- | debug/memusage.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/debug/memusage.c b/debug/memusage.c index eaf81f95..2dbb39e0 100644 --- a/debug/memusage.c +++ b/debug/memusage.c @@ -26,27 +26,27 @@ main(void) lzma_init(); lzma_options_lzma lzma = { - .dictionary_size = (1 << 27) + (1 << 26), - .literal_context_bits = 3, - .literal_pos_bits = 0, - .pos_bits = 2, - .preset_dictionary = NULL, - .preset_dictionary_size = 0, + .dict_size = (1U << 27) + (1U << 26), + .lc = 3, + .lp = 0, + .pb = 2, + .preset_dict = NULL, + .preset_dict_size = 0, .mode = LZMA_MODE_NORMAL, - .fast_bytes = 48, - .match_finder = LZMA_MF_BT4, - .match_finder_cycles = 0, + .nice_len = 48, + .mf = LZMA_MF_BT4, + .depth = 0, }; /* lzma_options_filter filters[] = { - { LZMA_FILTER_LZMA, + { LZMA_FILTER_LZMA1, (lzma_options_lzma *)&lzma_preset_lzma[6 - 1] }, { UINT64_MAX, NULL } }; */ lzma_filter filters[] = { - { LZMA_FILTER_LZMA, &lzma }, + { LZMA_FILTER_LZMA1, &lzma }, { UINT64_MAX, NULL } }; |