We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b137934 commit 3135c12Copy full SHA for 3135c12
src/entropy/TPAQPredictor.hpp
@@ -433,7 +433,7 @@ namespace kanzi
433
if (_binCount < (_pos >> 2)) {
434
// Mostly text or mixed
435
_ctx4 = createContext(_ctx1, _c4 ^ (_c8 & 0xFFFF));
436
- _ctx5 = (_c8 & 0xF0F0F000) | ((_c4 >> 4) & 0x0F0F0F00);
+ _ctx5 = (_c8 & 0xF0F0F000) | ((_c4 & 0xF0F0F000) >> 4);
437
438
if (T == true) {
439
const uint h1 = ((_c4 & 0x80808080) == 0) ? _c4 & 0x4F4FFFFF : _c4 & 0x80808080;
0 commit comments