diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2008-11-19 20:46:52 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2008-11-19 20:46:52 +0200 |
commit | e114502b2bc371e4a45449832cb69be036360722 (patch) | |
tree | 449c41d0408f99926de202611091747f1fbe2f85 /debug/sync_flush.c | |
parent | Fixed the test that should have been fixed as part (diff) | |
download | xz-e114502b2bc371e4a45449832cb69be036360722.tar.xz |
Oh well, big messy commit again. Some highlights:
- Updated to the latest, probably final file format version.
- Command line tool reworked to not use threads anymore.
Threading will probably go into liblzma anyway.
- Memory usage limit is now about 30 % for uncompression
and about 90 % for compression.
- Progress indicator with --verbose
- Simplified --help and full --long-help
- Upgraded to the last LGPLv2.1+ getopt_long from gnulib.
- Some bug fixes
Diffstat (limited to '')
-rw-r--r-- | debug/sync_flush.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/debug/sync_flush.c b/debug/sync_flush.c index a161ca31..19fbef53 100644 --- a/debug/sync_flush.c +++ b/debug/sync_flush.c @@ -87,7 +87,7 @@ main(int argc, char **argv) }; lzma_options_delta opt_delta = { - .distance = 16 + .dist = 16 }; lzma_options_subblock opt_subblock = { @@ -102,7 +102,7 @@ main(int argc, char **argv) opt_subblock.subfilter_options.id = LZMA_FILTER_DELTA; opt_subblock.subfilter_options.options = &opt_delta; - lzma_filter filters[LZMA_BLOCK_FILTERS_MAX + 1]; + lzma_filter filters[LZMA_FILTERS_MAX + 1]; filters[0].id = LZMA_FILTER_LZMA2; filters[0].options = &opt_lzma; filters[1].id = LZMA_VLI_UNKNOWN; @@ -114,20 +114,20 @@ main(int argc, char **argv) } // Encoding -/* + encode(0, LZMA_SYNC_FLUSH); encode(6, LZMA_SYNC_FLUSH); encode(0, LZMA_SYNC_FLUSH); encode(7, LZMA_SYNC_FLUSH); encode(0, LZMA_SYNC_FLUSH); encode(0, LZMA_FINISH); -*/ +/* encode(53, LZMA_SYNC_FLUSH); // opt_lzma.literal_context_bits = 2; // opt_lzma.literal_pos_bits = 1; // opt_lzma.pos_bits = 0; encode(404, LZMA_FINISH); - +*/ // Clean up lzma_end(&strm); |