mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
liblzma: Add missing comments to lz_encoder.h.
This commit is contained in:
parent
49053c0a64
commit
84196e8c09
1 changed files with 5 additions and 1 deletions
|
@ -153,9 +153,13 @@ typedef struct {
|
||||||
/// Maximum search depth
|
/// Maximum search depth
|
||||||
uint32_t depth;
|
uint32_t depth;
|
||||||
|
|
||||||
/// TODO: Comment
|
/// Initial dictionary for the match finder to search.
|
||||||
const uint8_t *preset_dict;
|
const uint8_t *preset_dict;
|
||||||
|
|
||||||
|
/// If the preset dictionary is NULL, this value is ignored.
|
||||||
|
/// Otherwise this member must indicate the preset dictionary's
|
||||||
|
/// buffer size. If this size is larger than dict_size, then only
|
||||||
|
/// the dict_size sized tail of the preset_dict will be used.
|
||||||
uint32_t preset_dict_size;
|
uint32_t preset_dict_size;
|
||||||
|
|
||||||
} lzma_lz_options;
|
} lzma_lz_options;
|
||||||
|
|
Loading…
Reference in a new issue