2
0
mirror of https://github.com/vasi/pixz synced 2024-11-18 15:26:46 +00:00

Change default block fraction to 2.0

This commit is contained in:
Dave Vasilevsky 2012-12-22 19:03:56 -05:00
parent 13f6237b67
commit 878e8e0585
2 changed files with 2 additions and 2 deletions

2
read.c
View File

@ -60,7 +60,7 @@ static void tar_write_last(void);
#pragma mark DECLARE READ BUFFER #pragma mark DECLARE READ BUFFER
#define STREAMSIZE (1024 * 1024) #define STREAMSIZE (1024 * 1024)
#define MAXSPLITSIZE (64 * 1024 * 1024) // xz -9 blocksize #define MAXSPLITSIZE ((64 * 1024 * 1024) * 2) // xz -9 blocksize * 2
static pipeline_item_t *gRbufPI = NULL; static pipeline_item_t *gRbufPI = NULL;
static io_block_t *gRbuf = NULL; static io_block_t *gRbuf = NULL;

View File

@ -16,7 +16,7 @@ struct io_block_t {
#pragma mark GLOBALS #pragma mark GLOBALS
double gBlockFraction = 1.0; double gBlockFraction = 2.0;
static bool gTar = true; static bool gTar = true;