diff options
author | Igor Pavlov <87184205+ip7z@users.noreply.github.com> | 2023-06-21 00:00:00 +0000 |
---|---|---|
committer | Igor Pavlov <87184205+ip7z@users.noreply.github.com> | 2023-12-17 14:59:19 +0500 |
commit | 5b39dc76f1bc82f941d5c800ab9f34407a06b53a (patch) | |
tree | fe5e17420300b715021a76328444088d32047963 /C/Ppmd7Dec.c | |
parent | 93be7d4abfd4233228f58ee1fbbcd76d91be66a4 (diff) | |
download | 7zip-23.01.tar.gz 7zip-23.01.tar.bz2 7zip-23.01.zip |
23.0123.01
Diffstat (limited to 'C/Ppmd7Dec.c')
-rw-r--r-- | C/Ppmd7Dec.c | 57 |
1 files changed, 36 insertions, 21 deletions
diff --git a/C/Ppmd7Dec.c b/C/Ppmd7Dec.c index 55d74ff..8323828 100644 --- a/C/Ppmd7Dec.c +++ b/C/Ppmd7Dec.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* Ppmd7Dec.c -- Ppmd7z (PPMdH with 7z Range Coder) Decoder | 1 | /* Ppmd7Dec.c -- Ppmd7z (PPMdH with 7z Range Coder) Decoder |
2 | 2021-04-13 : Igor Pavlov : Public domain | 2 | 2023-04-02 : Igor Pavlov : Public domain |
3 | This code is based on: | 3 | This code is based on: |
4 | PPMd var.H (2001): Dmitry Shkarin : Public domain */ | 4 | PPMd var.H (2001): Dmitry Shkarin : Public domain */ |
5 | 5 | ||
@@ -8,7 +8,7 @@ This code is based on: | |||
8 | 8 | ||
9 | #include "Ppmd7.h" | 9 | #include "Ppmd7.h" |
10 | 10 | ||
11 | #define kTopValue (1 << 24) | 11 | #define kTopValue ((UInt32)1 << 24) |
12 | 12 | ||
13 | 13 | ||
14 | #define READ_BYTE(p) IByteIn_Read((p)->Stream) | 14 | #define READ_BYTE(p) IByteIn_Read((p)->Stream) |
@@ -37,9 +37,9 @@ BoolInt Ppmd7z_RangeDec_Init(CPpmd7_RangeDec *p) | |||
37 | 37 | ||
38 | #define R (&p->rc.dec) | 38 | #define R (&p->rc.dec) |
39 | 39 | ||
40 | MY_FORCE_INLINE | 40 | Z7_FORCE_INLINE |
41 | // MY_NO_INLINE | 41 | // Z7_NO_INLINE |
42 | static void RangeDec_Decode(CPpmd7 *p, UInt32 start, UInt32 size) | 42 | static void Ppmd7z_RD_Decode(CPpmd7 *p, UInt32 start, UInt32 size) |
43 | { | 43 | { |
44 | 44 | ||
45 | 45 | ||
@@ -48,18 +48,18 @@ static void RangeDec_Decode(CPpmd7 *p, UInt32 start, UInt32 size) | |||
48 | RC_NORM_LOCAL(R) | 48 | RC_NORM_LOCAL(R) |
49 | } | 49 | } |
50 | 50 | ||
51 | #define RC_Decode(start, size) RangeDec_Decode(p, start, size); | 51 | #define RC_Decode(start, size) Ppmd7z_RD_Decode(p, start, size); |
52 | #define RC_DecodeFinal(start, size) RC_Decode(start, size) RC_NORM_REMOTE(R) | 52 | #define RC_DecodeFinal(start, size) RC_Decode(start, size) RC_NORM_REMOTE(R) |
53 | #define RC_GetThreshold(total) (R->Code / (R->Range /= (total))) | 53 | #define RC_GetThreshold(total) (R->Code / (R->Range /= (total))) |
54 | 54 | ||
55 | 55 | ||
56 | #define CTX(ref) ((CPpmd7_Context *)Ppmd7_GetContext(p, ref)) | 56 | #define CTX(ref) ((CPpmd7_Context *)Ppmd7_GetContext(p, ref)) |
57 | typedef CPpmd7_Context * CTX_PTR; | 57 | // typedef CPpmd7_Context * CTX_PTR; |
58 | #define SUCCESSOR(p) Ppmd_GET_SUCCESSOR(p) | 58 | #define SUCCESSOR(p) Ppmd_GET_SUCCESSOR(p) |
59 | void Ppmd7_UpdateModel(CPpmd7 *p); | 59 | void Ppmd7_UpdateModel(CPpmd7 *p); |
60 | 60 | ||
61 | #define MASK(sym) ((unsigned char *)charMask)[sym] | 61 | #define MASK(sym) ((unsigned char *)charMask)[sym] |
62 | // MY_FORCE_INLINE | 62 | // Z7_FORCE_INLINE |
63 | // static | 63 | // static |
64 | int Ppmd7z_DecodeSymbol(CPpmd7 *p) | 64 | int Ppmd7z_DecodeSymbol(CPpmd7 *p) |
65 | { | 65 | { |
@@ -70,7 +70,7 @@ int Ppmd7z_DecodeSymbol(CPpmd7 *p) | |||
70 | CPpmd_State *s = Ppmd7_GetStats(p, p->MinContext); | 70 | CPpmd_State *s = Ppmd7_GetStats(p, p->MinContext); |
71 | unsigned i; | 71 | unsigned i; |
72 | UInt32 count, hiCnt; | 72 | UInt32 count, hiCnt; |
73 | UInt32 summFreq = p->MinContext->Union2.SummFreq; | 73 | const UInt32 summFreq = p->MinContext->Union2.SummFreq; |
74 | 74 | ||
75 | 75 | ||
76 | 76 | ||
@@ -81,7 +81,7 @@ int Ppmd7z_DecodeSymbol(CPpmd7 *p) | |||
81 | if ((Int32)(count -= s->Freq) < 0) | 81 | if ((Int32)(count -= s->Freq) < 0) |
82 | { | 82 | { |
83 | Byte sym; | 83 | Byte sym; |
84 | RC_DecodeFinal(0, s->Freq); | 84 | RC_DecodeFinal(0, s->Freq) |
85 | p->FoundState = s; | 85 | p->FoundState = s; |
86 | sym = s->Symbol; | 86 | sym = s->Symbol; |
87 | Ppmd7_Update1_0(p); | 87 | Ppmd7_Update1_0(p); |
@@ -96,7 +96,7 @@ int Ppmd7z_DecodeSymbol(CPpmd7 *p) | |||
96 | if ((Int32)(count -= (++s)->Freq) < 0) | 96 | if ((Int32)(count -= (++s)->Freq) < 0) |
97 | { | 97 | { |
98 | Byte sym; | 98 | Byte sym; |
99 | RC_DecodeFinal((hiCnt - count) - s->Freq, s->Freq); | 99 | RC_DecodeFinal((hiCnt - count) - s->Freq, s->Freq) |
100 | p->FoundState = s; | 100 | p->FoundState = s; |
101 | sym = s->Symbol; | 101 | sym = s->Symbol; |
102 | Ppmd7_Update1(p); | 102 | Ppmd7_Update1(p); |
@@ -109,10 +109,10 @@ int Ppmd7z_DecodeSymbol(CPpmd7 *p) | |||
109 | return PPMD7_SYM_ERROR; | 109 | return PPMD7_SYM_ERROR; |
110 | 110 | ||
111 | hiCnt -= count; | 111 | hiCnt -= count; |
112 | RC_Decode(hiCnt, summFreq - hiCnt); | 112 | RC_Decode(hiCnt, summFreq - hiCnt) |
113 | 113 | ||
114 | p->HiBitsFlag = PPMD7_HiBitsFlag_3(p->FoundState->Symbol); | 114 | p->HiBitsFlag = PPMD7_HiBitsFlag_3(p->FoundState->Symbol); |
115 | PPMD_SetAllBitsIn256Bytes(charMask); | 115 | PPMD_SetAllBitsIn256Bytes(charMask) |
116 | // i = p->MinContext->NumStats - 1; | 116 | // i = p->MinContext->NumStats - 1; |
117 | // do { MASK((--s)->Symbol) = 0; } while (--i); | 117 | // do { MASK((--s)->Symbol) = 0; } while (--i); |
118 | { | 118 | { |
@@ -152,7 +152,7 @@ int Ppmd7z_DecodeSymbol(CPpmd7 *p) | |||
152 | // Ppmd7_UpdateBin(p); | 152 | // Ppmd7_UpdateBin(p); |
153 | { | 153 | { |
154 | unsigned freq = s->Freq; | 154 | unsigned freq = s->Freq; |
155 | CTX_PTR c = CTX(SUCCESSOR(s)); | 155 | CPpmd7_Context *c = CTX(SUCCESSOR(s)); |
156 | sym = s->Symbol; | 156 | sym = s->Symbol; |
157 | p->FoundState = s; | 157 | p->FoundState = s; |
158 | p->PrevSuccess = 1; | 158 | p->PrevSuccess = 1; |
@@ -176,7 +176,7 @@ int Ppmd7z_DecodeSymbol(CPpmd7 *p) | |||
176 | R->Range -= size0; | 176 | R->Range -= size0; |
177 | RC_NORM_LOCAL(R) | 177 | RC_NORM_LOCAL(R) |
178 | 178 | ||
179 | PPMD_SetAllBitsIn256Bytes(charMask); | 179 | PPMD_SetAllBitsIn256Bytes(charMask) |
180 | MASK(Ppmd7Context_OneState(p->MinContext)->Symbol) = 0; | 180 | MASK(Ppmd7Context_OneState(p->MinContext)->Symbol) = 0; |
181 | p->PrevSuccess = 0; | 181 | p->PrevSuccess = 0; |
182 | } | 182 | } |
@@ -245,13 +245,13 @@ int Ppmd7z_DecodeSymbol(CPpmd7 *p) | |||
245 | { | 245 | { |
246 | count -= s->Freq & (unsigned)(MASK((s)->Symbol)); s++; if ((Int32)count < 0) break; | 246 | count -= s->Freq & (unsigned)(MASK((s)->Symbol)); s++; if ((Int32)count < 0) break; |
247 | // count -= s->Freq & (unsigned)(MASK((s)->Symbol)); s++; if ((Int32)count < 0) break; | 247 | // count -= s->Freq & (unsigned)(MASK((s)->Symbol)); s++; if ((Int32)count < 0) break; |
248 | }; | 248 | } |
249 | } | 249 | } |
250 | s--; | 250 | s--; |
251 | RC_DecodeFinal((hiCnt - count) - s->Freq, s->Freq); | 251 | RC_DecodeFinal((hiCnt - count) - s->Freq, s->Freq) |
252 | 252 | ||
253 | // new (see->Summ) value can overflow over 16-bits in some rare cases | 253 | // new (see->Summ) value can overflow over 16-bits in some rare cases |
254 | Ppmd_See_Update(see); | 254 | Ppmd_See_UPDATE(see) |
255 | p->FoundState = s; | 255 | p->FoundState = s; |
256 | sym = s->Symbol; | 256 | sym = s->Symbol; |
257 | Ppmd7_Update2(p); | 257 | Ppmd7_Update2(p); |
@@ -261,7 +261,7 @@ int Ppmd7z_DecodeSymbol(CPpmd7 *p) | |||
261 | if (count >= freqSum) | 261 | if (count >= freqSum) |
262 | return PPMD7_SYM_ERROR; | 262 | return PPMD7_SYM_ERROR; |
263 | 263 | ||
264 | RC_Decode(hiCnt, freqSum - hiCnt); | 264 | RC_Decode(hiCnt, freqSum - hiCnt) |
265 | 265 | ||
266 | // We increase (see->Summ) for sum of Freqs of all non_Masked symbols. | 266 | // We increase (see->Summ) for sum of Freqs of all non_Masked symbols. |
267 | // new (see->Summ) value can overflow over 16-bits in some rare cases | 267 | // new (see->Summ) value can overflow over 16-bits in some rare cases |
@@ -295,3 +295,18 @@ Byte *Ppmd7z_DecodeSymbols(CPpmd7 *p, Byte *buf, const Byte *lim) | |||
295 | return buf; | 295 | return buf; |
296 | } | 296 | } |
297 | */ | 297 | */ |
298 | |||
299 | #undef kTopValue | ||
300 | #undef READ_BYTE | ||
301 | #undef RC_NORM_BASE | ||
302 | #undef RC_NORM_1 | ||
303 | #undef RC_NORM | ||
304 | #undef RC_NORM_LOCAL | ||
305 | #undef RC_NORM_REMOTE | ||
306 | #undef R | ||
307 | #undef RC_Decode | ||
308 | #undef RC_DecodeFinal | ||
309 | #undef RC_GetThreshold | ||
310 | #undef CTX | ||
311 | #undef SUCCESSOR | ||
312 | #undef MASK | ||