diff options
Diffstat (limited to 'C/Ppmd8.h')
-rw-r--r-- | C/Ppmd8.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,11 +1,11 @@ | |||
1 | /* Ppmd8.h -- Ppmd8 (PPMdI) compression codec | 1 | /* Ppmd8.h -- Ppmd8 (PPMdI) compression codec |
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.I (2002): Dmitry Shkarin : Public domain | 4 | PPMd var.I (2002): Dmitry Shkarin : Public domain |
5 | Carryless rangecoder (1999): Dmitry Subbotin : Public domain */ | 5 | Carryless rangecoder (1999): Dmitry Subbotin : Public domain */ |
6 | 6 | ||
7 | #ifndef __PPMD8_H | 7 | #ifndef ZIP7_INC_PPMD8_H |
8 | #define __PPMD8_H | 8 | #define ZIP7_INC_PPMD8_H |
9 | 9 | ||
10 | #include "Ppmd.h" | 10 | #include "Ppmd.h" |
11 | 11 | ||
@@ -87,8 +87,8 @@ typedef struct | |||
87 | UInt32 Low; | 87 | UInt32 Low; |
88 | union | 88 | union |
89 | { | 89 | { |
90 | IByteIn *In; | 90 | IByteInPtr In; |
91 | IByteOut *Out; | 91 | IByteOutPtr Out; |
92 | } Stream; | 92 | } Stream; |
93 | 93 | ||
94 | Byte Indx2Units[PPMD_NUM_INDEXES + 2]; // +2 for alignment | 94 | Byte Indx2Units[PPMD_NUM_INDEXES + 2]; // +2 for alignment |