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/Lzma2DecMt.h | |
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/Lzma2DecMt.h')
-rw-r--r-- | C/Lzma2DecMt.h | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/C/Lzma2DecMt.h b/C/Lzma2DecMt.h index 7791c31..93a5cd5 100644 --- a/C/Lzma2DecMt.h +++ b/C/Lzma2DecMt.h | |||
@@ -1,8 +1,8 @@ | |||
1 | /* Lzma2DecMt.h -- LZMA2 Decoder Multi-thread | 1 | /* Lzma2DecMt.h -- LZMA2 Decoder Multi-thread |
2 | 2018-02-17 : Igor Pavlov : Public domain */ | 2 | 2023-04-13 : Igor Pavlov : Public domain */ |
3 | 3 | ||
4 | #ifndef __LZMA2_DEC_MT_H | 4 | #ifndef ZIP7_INC_LZMA2_DEC_MT_H |
5 | #define __LZMA2_DEC_MT_H | 5 | #define ZIP7_INC_LZMA2_DEC_MT_H |
6 | 6 | ||
7 | #include "7zTypes.h" | 7 | #include "7zTypes.h" |
8 | 8 | ||
@@ -13,7 +13,7 @@ typedef struct | |||
13 | size_t inBufSize_ST; | 13 | size_t inBufSize_ST; |
14 | size_t outStep_ST; | 14 | size_t outStep_ST; |
15 | 15 | ||
16 | #ifndef _7ZIP_ST | 16 | #ifndef Z7_ST |
17 | unsigned numThreads; | 17 | unsigned numThreads; |
18 | size_t inBufSize_MT; | 18 | size_t inBufSize_MT; |
19 | size_t outBlockMax; | 19 | size_t outBlockMax; |
@@ -38,7 +38,9 @@ SRes: | |||
38 | SZ_ERROR_THREAD - error in multithreading functions (only for Mt version) | 38 | SZ_ERROR_THREAD - error in multithreading functions (only for Mt version) |
39 | */ | 39 | */ |
40 | 40 | ||
41 | typedef void * CLzma2DecMtHandle; | 41 | typedef struct CLzma2DecMt CLzma2DecMt; |
42 | typedef CLzma2DecMt * CLzma2DecMtHandle; | ||
43 | // Z7_DECLARE_HANDLE(CLzma2DecMtHandle) | ||
42 | 44 | ||
43 | CLzma2DecMtHandle Lzma2DecMt_Create(ISzAllocPtr alloc, ISzAllocPtr allocMid); | 45 | CLzma2DecMtHandle Lzma2DecMt_Create(ISzAllocPtr alloc, ISzAllocPtr allocMid); |
44 | void Lzma2DecMt_Destroy(CLzma2DecMtHandle p); | 46 | void Lzma2DecMt_Destroy(CLzma2DecMtHandle p); |
@@ -46,11 +48,11 @@ void Lzma2DecMt_Destroy(CLzma2DecMtHandle p); | |||
46 | SRes Lzma2DecMt_Decode(CLzma2DecMtHandle p, | 48 | SRes Lzma2DecMt_Decode(CLzma2DecMtHandle p, |
47 | Byte prop, | 49 | Byte prop, |
48 | const CLzma2DecMtProps *props, | 50 | const CLzma2DecMtProps *props, |
49 | ISeqOutStream *outStream, | 51 | ISeqOutStreamPtr outStream, |
50 | const UInt64 *outDataSize, // NULL means undefined | 52 | const UInt64 *outDataSize, // NULL means undefined |
51 | int finishMode, // 0 - partial unpacking is allowed, 1 - if lzma2 stream must be finished | 53 | int finishMode, // 0 - partial unpacking is allowed, 1 - if lzma2 stream must be finished |
52 | // Byte *outBuf, size_t *outBufSize, | 54 | // Byte *outBuf, size_t *outBufSize, |
53 | ISeqInStream *inStream, | 55 | ISeqInStreamPtr inStream, |
54 | // const Byte *inData, size_t inDataSize, | 56 | // const Byte *inData, size_t inDataSize, |
55 | 57 | ||
56 | // out variables: | 58 | // out variables: |
@@ -58,7 +60,7 @@ SRes Lzma2DecMt_Decode(CLzma2DecMtHandle p, | |||
58 | int *isMT, /* out: (*isMT == 0), if single thread decoding was used */ | 60 | int *isMT, /* out: (*isMT == 0), if single thread decoding was used */ |
59 | 61 | ||
60 | // UInt64 *outProcessed, | 62 | // UInt64 *outProcessed, |
61 | ICompressProgress *progress); | 63 | ICompressProgressPtr progress); |
62 | 64 | ||
63 | 65 | ||
64 | /* ---------- Read from CLzma2DecMtHandle Interface ---------- */ | 66 | /* ---------- Read from CLzma2DecMtHandle Interface ---------- */ |
@@ -67,7 +69,7 @@ SRes Lzma2DecMt_Init(CLzma2DecMtHandle pp, | |||
67 | Byte prop, | 69 | Byte prop, |
68 | const CLzma2DecMtProps *props, | 70 | const CLzma2DecMtProps *props, |
69 | const UInt64 *outDataSize, int finishMode, | 71 | const UInt64 *outDataSize, int finishMode, |
70 | ISeqInStream *inStream); | 72 | ISeqInStreamPtr inStream); |
71 | 73 | ||
72 | SRes Lzma2DecMt_Read(CLzma2DecMtHandle pp, | 74 | SRes Lzma2DecMt_Read(CLzma2DecMtHandle pp, |
73 | Byte *data, size_t *outSize, | 75 | Byte *data, size_t *outSize, |