mirror of https://git.tukaani.org/xz.git
parent
b90339f4da
commit
32eb176b89
|
@ -648,7 +648,7 @@ coder_set_compression_settings(void)
|
||||||
// filter's dictionary was reduced.
|
// filter's dictionary was reduced.
|
||||||
uint32_t orig_dict_size;
|
uint32_t orig_dict_size;
|
||||||
|
|
||||||
// Index of the LZMA filter in the filters member. We only
|
// Index of LZMA1 or LZMA2 in the filters member. We only
|
||||||
// adjust this filter's memusage because we don't know how
|
// adjust this filter's memusage because we don't know how
|
||||||
// to reduce the memory usage of the other filters.
|
// to reduce the memory usage of the other filters.
|
||||||
uint32_t lzma_idx;
|
uint32_t lzma_idx;
|
||||||
|
@ -662,14 +662,10 @@ coder_set_compression_settings(void)
|
||||||
|
|
||||||
memusage_reduction_data memusage_reduction[ARRAY_SIZE(chains)];
|
memusage_reduction_data memusage_reduction[ARRAY_SIZE(chains)];
|
||||||
|
|
||||||
// Counter represents how many filter chains are above the memory
|
// Count how many filter chains are above the memory usage limit.
|
||||||
// limit.
|
|
||||||
size_t count = 0;
|
size_t count = 0;
|
||||||
|
|
||||||
for (uint32_t i = 0; i < ARRAY_SIZE(chains); i++) {
|
for (uint32_t i = 0; i < ARRAY_SIZE(chains); i++) {
|
||||||
// The short var name "r" will reduce the number of lines
|
|
||||||
// of code needed since less lines will stretch past 80
|
|
||||||
// characters.
|
|
||||||
memusage_reduction_data *r = &memusage_reduction[i];
|
memusage_reduction_data *r = &memusage_reduction[i];
|
||||||
r->filters = NULL;
|
r->filters = NULL;
|
||||||
r->reduce_dict_size = false;
|
r->reduce_dict_size = false;
|
||||||
|
|
Loading…
Reference in New Issue