summaryrefslogtreecommitdiff
path: root/debug
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2009-11-14 19:45:39 +0200
committerLasse Collin <lasse.collin@tukaani.org>2009-11-14 19:45:39 +0200
commit2291346f0cccf88e605d84b75c9c5aaaaddb5df8 (patch)
treea3775bdb67fcab104c81a70baf1766027e2c1c4c /debug
parent418d64a32e8144210f98a810738fed5a897e8367 (diff)
downloadxz-2291346f0cccf88e605d84b75c9c5aaaaddb5df8.tar.gz
Update the debug programs so that they compile again.
Diffstat (limited to 'debug')
-rw-r--r--debug/crc32.c1
-rw-r--r--debug/memusage.c6
-rw-r--r--debug/sync_flush.c14
3 files changed, 14 insertions, 7 deletions
diff --git a/debug/crc32.c b/debug/crc32.c
index 0fe4651..e545a3c 100644
--- a/debug/crc32.c
+++ b/debug/crc32.c
@@ -11,6 +11,7 @@
///////////////////////////////////////////////////////////////////////////////
#include "sysdefs.h"
+#include "lzma.h"
#include <stdio.h>
diff --git a/debug/memusage.c b/debug/memusage.c
index 93fe0b2..bd72b5a 100644
--- a/debug/memusage.c
+++ b/debug/memusage.c
@@ -42,8 +42,10 @@ main(void)
{ UINT64_MAX, NULL }
};
- printf("Encoder: %10" PRIu64 " B\n", lzma_memusage_encoder(filters));
- printf("Decoder: %10" PRIu64 " B\n", lzma_memusage_decoder(filters));
+ printf("Encoder: %10" PRIu64 " B\n",
+ lzma_raw_encoder_memusage(filters));
+ printf("Decoder: %10" PRIu64 " B\n",
+ lzma_raw_decoder_memusage(filters));
return 0;
}
diff --git a/debug/sync_flush.c b/debug/sync_flush.c
index 1dccbda..4a31efd 100644
--- a/debug/sync_flush.c
+++ b/debug/sync_flush.c
@@ -71,7 +71,6 @@ main(int argc, char **argv)
.lp = LZMA_LP_DEFAULT,
.pb = LZMA_PB_DEFAULT,
.preset_dict = NULL,
- .persistent = true,
.mode = LZMA_MODE_NORMAL,
.nice_len = 32,
.mf = LZMA_MF_HC3,
@@ -106,20 +105,25 @@ 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;
+ opt_lzma.lc = 2;
+ opt_lzma.lp = 1;
+ opt_lzma.pb = 0;
+ if (lzma_filters_update(&strm, filters) != LZMA_OK) {
+ fprintf(stderr, "update failed\n");
+ exit(1);
+ }
encode(404, LZMA_FINISH);
*/
+
// Clean up
lzma_end(&strm);