mirror of https://git.tukaani.org/xz.git
Update a comment to use the variable name rep_len_decoder.
(And BTW, the previous commit actually did change the program logic slightly.)
This commit is contained in:
parent
63b74d000e
commit
7521bbdc83
|
@ -135,7 +135,7 @@ struct lzma_coder_s {
|
||||||
probability is_rep2[STATES];
|
probability is_rep2[STATES];
|
||||||
|
|
||||||
/// If 1, the repeated match has length of one byte. Otherwise
|
/// If 1, the repeated match has length of one byte. Otherwise
|
||||||
/// the length is decoded from rep_match_len_decoder.
|
/// the length is decoded from rep_len_decoder.
|
||||||
probability is_rep0_long[STATES][POS_STATES_MAX];
|
probability is_rep0_long[STATES][POS_STATES_MAX];
|
||||||
|
|
||||||
probability pos_slot_decoder[LEN_TO_POS_STATES][1 << POS_SLOT_BITS];
|
probability pos_slot_decoder[LEN_TO_POS_STATES][1 << POS_SLOT_BITS];
|
||||||
|
|
Loading…
Reference in New Issue