1
0
mirror of https://git.tukaani.org/xz.git synced 2025-04-04 06:40:58 +00:00

liblzma: Define LZ_DICT_INIT_POS for initial dictionary position

It's more readable.
This commit is contained in:
Lasse Collin 2025-03-25 15:18:30 +02:00
parent 8e7cd0091e
commit e82ee090c5
No known key found for this signature in database
GPG Key ID: 38EE757D69184620
2 changed files with 8 additions and 5 deletions

View File

@ -53,9 +53,9 @@ typedef struct {
static void
lz_decoder_reset(lzma_coder *coder)
{
coder->dict.pos = 2 * LZ_DICT_REPEAT_MAX;
coder->dict.pos = LZ_DICT_INIT_POS;
coder->dict.full = 0;
coder->dict.buf[2 * LZ_DICT_REPEAT_MAX - 1] = '\0';
coder->dict.buf[LZ_DICT_INIT_POS - 1] = '\0';
coder->dict.has_wrapped = false;
coder->dict.need_reset = false;
return;

View File

@ -35,6 +35,9 @@
/// LZMA's longest match length is 273 so pick a multiple of 16 above that.
#define LZ_DICT_REPEAT_MAX 288
/// Initial position in lzma_dict.buf when the dictionary is empty.
#define LZ_DICT_INIT_POS (2 * LZ_DICT_REPEAT_MAX)
typedef struct {
/// Pointer to the dictionary buffer.
@ -185,7 +188,7 @@ dict_repeat(lzma_dict *dict, uint32_t distance, uint32_t *len)
// Update how full the dictionary is.
if (!dict->has_wrapped)
dict->full = dict->pos - 2 * LZ_DICT_REPEAT_MAX;
dict->full = dict->pos - LZ_DICT_INIT_POS;
return *len != 0;
}
@ -197,7 +200,7 @@ dict_put(lzma_dict *dict, uint8_t byte)
dict->buf[dict->pos++] = byte;
if (!dict->has_wrapped)
dict->full = dict->pos - 2 * LZ_DICT_REPEAT_MAX;
dict->full = dict->pos - LZ_DICT_INIT_POS;
}
@ -234,7 +237,7 @@ dict_write(lzma_dict *restrict dict, const uint8_t *restrict in,
dict->buf, &dict->pos, dict->limit);
if (!dict->has_wrapped)
dict->full = dict->pos - 2 * LZ_DICT_REPEAT_MAX;
dict->full = dict->pos - LZ_DICT_INIT_POS;
return;
}