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
5fe1450603
commit
2ade7246e7
1 changed files with 5 additions and 1 deletions
|
@ -161,9 +161,13 @@ typedef struct {
|
|||
/// Maximum search depth
|
||||
uint32_t depth;
|
||||
|
||||
/// TODO: Comment
|
||||
/// Initial dictionary for the match finder to search.
|
||||
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;
|
||||
|
||||
} lzma_lz_options;
|
||||
|
|
Loading…
Reference in a new issue