|
|
|
|
|
by sedatk
1412 days ago
|
|
I don't understand why the author encodes every literal byte as a separate instruction while in reality, they're just consecutive bytes? The whole: LIT 13
LIT 24
LIT 65
LIT 32
...
could have been written as a single instruction: LIT [13, 24, 65, 32, ...]
It's almost as if author tries too hard to support their point that their variant looks better."Notice how much faster it makes progress through the file vs. LZSS" Yeah, because you encode every literal separately? It's all LIT instructions? |
|