mirror of
https://github.com/emmanuel-marty/lzsa.git
synced 2024-11-22 05:33:58 +00:00
Remove unneeded code
This commit is contained in:
parent
fc927c783c
commit
b98f8410fe
@ -478,10 +478,9 @@ static void lzsa_optimize_forward_v2(lzsa_compressor *pCompressor, const unsigne
|
|||||||
|
|
||||||
lzsa_arrival *pDestSlots = &cur_arrival[k << ARRIVALS_PER_POSITION_SHIFT];
|
lzsa_arrival *pDestSlots = &cur_arrival[k << ARRIVALS_PER_POSITION_SHIFT];
|
||||||
|
|
||||||
/* Insert non-repmatch candidates */
|
/* Insert non-repmatch candidate */
|
||||||
|
|
||||||
if (nNonRepMatchArrivalIdx >= 0) {
|
if (nNonRepMatchArrivalIdx >= 0) {
|
||||||
int nRepOffset = cur_arrival[nNonRepMatchArrivalIdx].rep_offset;
|
|
||||||
const int nPrevCost = cur_arrival[nNonRepMatchArrivalIdx].cost & 0x3fffffff;
|
const int nPrevCost = cur_arrival[nNonRepMatchArrivalIdx].cost & 0x3fffffff;
|
||||||
int nCodingChoiceCost = nPrevCost /* the actual cost of the literals themselves accumulates up the chain */ + nMatchLenCost + nNoRepmatchOffsetCost;
|
int nCodingChoiceCost = nPrevCost /* the actual cost of the literals themselves accumulates up the chain */ + nMatchLenCost + nNoRepmatchOffsetCost;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user