![]() |
Parolin 0.7.9 6796
Console (soon DLLs) to do a tar like job
|
Range Decoder. More...
#include "range_common.h"
Go to the source code of this file.
Data Structures | |
struct | lzma_range_decoder |
Macros | |
#define | rc_to_local(range_decoder, in_pos) |
#define | rc_from_local(range_decoder, in_pos) |
Stores the local copes back to the range decoder structure. | |
#define | rc_reset(range_decoder) |
Resets the range decoder structure. | |
#define | rc_is_finished(range_decoder) |
#define | rc_normalize(seq) |
#define | rc_if_0(prob, seq) |
#define | rc_update_0(prob) |
#define | rc_update_1(prob) |
#define | rc_bit_last(prob, action0, action1, seq) |
#define | rc_bit(prob, action0, action1, seq) |
#define | rc_bit_case(prob, action0, action1, seq) |
#define | rc_direct(dest, seq) |
Decode a bit without using a probability. | |
Range Decoder.
#define rc_bit | ( | prob, | |
action0, | |||
action1, | |||
seq ) |
Decodes one bit, updates "symbol", and runs action0 or action1 depending on the decoded bit.
#define rc_bit_case | ( | prob, | |
action0, | |||
action1, | |||
seq ) |
Like rc_bit() but add "case seq:" as a prefix. This makes the unrolled loops more readable because the code isn't littered with "case" statements. On the other hand this also makes it less readable, since spotting the places where the decoder loop may be restarted is less obvious.
#define rc_bit_last | ( | prob, | |
action0, | |||
action1, | |||
seq ) |
Decodes one bit and runs action0 or action1 depending on the decoded bit. This macro is used as the last step in bittree reverse decoders since those don't use "symbol" for anything else than indexing the probability arrays.
#define rc_direct | ( | dest, | |
seq ) |
Decode a bit without using a probability.
#define rc_from_local | ( | range_decoder, | |
in_pos ) |
#define rc_if_0 | ( | prob, | |
seq ) |
Start decoding a bit. This must be used together with rc_update_0() and rc_update_1():
rc_if_0(prob, seq) { rc_update_0(prob); // Do something } else { rc_update_1(prob); // Do something else }
#define rc_is_finished | ( | range_decoder | ) |
When decoding has been properly finished, rc.code is always zero unless the input stream is corrupt. So checking this can catch some corrupt files especially if they don't have any other integrity check.
#define rc_normalize | ( | seq | ) |
Read the next input byte if needed. If more input is needed but there is no more input available, "goto out" is used to jump out of the main decoder loop.
#define rc_reset | ( | range_decoder | ) |
Resets the range decoder structure.
#define rc_to_local | ( | range_decoder, | |
in_pos ) |
Makes local copies of range decoder and *in_pos variables. Doing this improves speed significantly. The range decoder macros expect also variables ‘in’ and ‘in_size’ to be defined.
#define rc_update_0 | ( | prob | ) |
Update the range decoder state and the used probability variable to match a decoded bit of 0.
#define rc_update_1 | ( | prob | ) |
Update the range decoder state and the used probability variable to match a decoded bit of 1.