diff options
Diffstat (limited to '')
-rw-r--r-- | C/LzmaEnc.h | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/C/LzmaEnc.h b/C/LzmaEnc.h index bc2ed50..9f8039a 100644 --- a/C/LzmaEnc.h +++ b/C/LzmaEnc.h | |||
@@ -1,8 +1,8 @@ | |||
1 | /* LzmaEnc.h -- LZMA Encoder | 1 | /* LzmaEnc.h -- LZMA Encoder |
2 | 2019-10-30 : Igor Pavlov : Public domain */ | 2 | 2023-04-13 : Igor Pavlov : Public domain */ |
3 | 3 | ||
4 | #ifndef __LZMA_ENC_H | 4 | #ifndef ZIP7_INC_LZMA_ENC_H |
5 | #define __LZMA_ENC_H | 5 | #define ZIP7_INC_LZMA_ENC_H |
6 | 6 | ||
7 | #include "7zTypes.h" | 7 | #include "7zTypes.h" |
8 | 8 | ||
@@ -10,7 +10,7 @@ EXTERN_C_BEGIN | |||
10 | 10 | ||
11 | #define LZMA_PROPS_SIZE 5 | 11 | #define LZMA_PROPS_SIZE 5 |
12 | 12 | ||
13 | typedef struct _CLzmaEncProps | 13 | typedef struct |
14 | { | 14 | { |
15 | int level; /* 0 <= level <= 9 */ | 15 | int level; /* 0 <= level <= 9 */ |
16 | UInt32 dictSize; /* (1 << 12) <= dictSize <= (1 << 27) for 32-bit version | 16 | UInt32 dictSize; /* (1 << 12) <= dictSize <= (1 << 27) for 32-bit version |
@@ -23,10 +23,13 @@ typedef struct _CLzmaEncProps | |||
23 | int fb; /* 5 <= fb <= 273, default = 32 */ | 23 | int fb; /* 5 <= fb <= 273, default = 32 */ |
24 | int btMode; /* 0 - hashChain Mode, 1 - binTree mode - normal, default = 1 */ | 24 | int btMode; /* 0 - hashChain Mode, 1 - binTree mode - normal, default = 1 */ |
25 | int numHashBytes; /* 2, 3 or 4, default = 4 */ | 25 | int numHashBytes; /* 2, 3 or 4, default = 4 */ |
26 | unsigned numHashOutBits; /* default = ? */ | ||
26 | UInt32 mc; /* 1 <= mc <= (1 << 30), default = 32 */ | 27 | UInt32 mc; /* 1 <= mc <= (1 << 30), default = 32 */ |
27 | unsigned writeEndMark; /* 0 - do not write EOPM, 1 - write EOPM, default = 0 */ | 28 | unsigned writeEndMark; /* 0 - do not write EOPM, 1 - write EOPM, default = 0 */ |
28 | int numThreads; /* 1 or 2, default = 2 */ | 29 | int numThreads; /* 1 or 2, default = 2 */ |
29 | 30 | ||
31 | // int _pad; | ||
32 | |||
30 | UInt64 reduceSize; /* estimated size of data that will be compressed. default = (UInt64)(Int64)-1. | 33 | UInt64 reduceSize; /* estimated size of data that will be compressed. default = (UInt64)(Int64)-1. |
31 | Encoder uses this value to reduce dictionary size */ | 34 | Encoder uses this value to reduce dictionary size */ |
32 | 35 | ||
@@ -51,7 +54,9 @@ SRes: | |||
51 | SZ_ERROR_THREAD - error in multithreading functions (only for Mt version) | 54 | SZ_ERROR_THREAD - error in multithreading functions (only for Mt version) |
52 | */ | 55 | */ |
53 | 56 | ||
54 | typedef void * CLzmaEncHandle; | 57 | typedef struct CLzmaEnc CLzmaEnc; |
58 | typedef CLzmaEnc * CLzmaEncHandle; | ||
59 | // Z7_DECLARE_HANDLE(CLzmaEncHandle) | ||
55 | 60 | ||
56 | CLzmaEncHandle LzmaEnc_Create(ISzAllocPtr alloc); | 61 | CLzmaEncHandle LzmaEnc_Create(ISzAllocPtr alloc); |
57 | void LzmaEnc_Destroy(CLzmaEncHandle p, ISzAllocPtr alloc, ISzAllocPtr allocBig); | 62 | void LzmaEnc_Destroy(CLzmaEncHandle p, ISzAllocPtr alloc, ISzAllocPtr allocBig); |
@@ -61,17 +66,17 @@ void LzmaEnc_SetDataSize(CLzmaEncHandle p, UInt64 expectedDataSiize); | |||
61 | SRes LzmaEnc_WriteProperties(CLzmaEncHandle p, Byte *properties, SizeT *size); | 66 | SRes LzmaEnc_WriteProperties(CLzmaEncHandle p, Byte *properties, SizeT *size); |
62 | unsigned LzmaEnc_IsWriteEndMark(CLzmaEncHandle p); | 67 | unsigned LzmaEnc_IsWriteEndMark(CLzmaEncHandle p); |
63 | 68 | ||
64 | SRes LzmaEnc_Encode(CLzmaEncHandle p, ISeqOutStream *outStream, ISeqInStream *inStream, | 69 | SRes LzmaEnc_Encode(CLzmaEncHandle p, ISeqOutStreamPtr outStream, ISeqInStreamPtr inStream, |
65 | ICompressProgress *progress, ISzAllocPtr alloc, ISzAllocPtr allocBig); | 70 | ICompressProgressPtr progress, ISzAllocPtr alloc, ISzAllocPtr allocBig); |
66 | SRes LzmaEnc_MemEncode(CLzmaEncHandle p, Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen, | 71 | SRes LzmaEnc_MemEncode(CLzmaEncHandle p, Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen, |
67 | int writeEndMark, ICompressProgress *progress, ISzAllocPtr alloc, ISzAllocPtr allocBig); | 72 | int writeEndMark, ICompressProgressPtr progress, ISzAllocPtr alloc, ISzAllocPtr allocBig); |
68 | 73 | ||
69 | 74 | ||
70 | /* ---------- One Call Interface ---------- */ | 75 | /* ---------- One Call Interface ---------- */ |
71 | 76 | ||
72 | SRes LzmaEncode(Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen, | 77 | SRes LzmaEncode(Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen, |
73 | const CLzmaEncProps *props, Byte *propsEncoded, SizeT *propsSize, int writeEndMark, | 78 | const CLzmaEncProps *props, Byte *propsEncoded, SizeT *propsSize, int writeEndMark, |
74 | ICompressProgress *progress, ISzAllocPtr alloc, ISzAllocPtr allocBig); | 79 | ICompressProgressPtr progress, ISzAllocPtr alloc, ISzAllocPtr allocBig); |
75 | 80 | ||
76 | EXTERN_C_END | 81 | EXTERN_C_END |
77 | 82 | ||