update libchdr
[pcsx_rearmed.git] / deps / libchdr / deps / lzma-22.01 / include / LzmaEnc.h
CommitLineData
9e052883 1/* LzmaEnc.h -- LZMA Encoder\r
22019-10-30 : Igor Pavlov : Public domain */\r
3\r
4#ifndef __LZMA_ENC_H\r
5#define __LZMA_ENC_H\r
6\r
7#include "7zTypes.h"\r
8\r
9EXTERN_C_BEGIN\r
10\r
11#define LZMA_PROPS_SIZE 5\r
12\r
13typedef struct _CLzmaEncProps\r
14{\r
15 int level; /* 0 <= level <= 9 */\r
16 UInt32 dictSize; /* (1 << 12) <= dictSize <= (1 << 27) for 32-bit version\r
17 (1 << 12) <= dictSize <= (3 << 29) for 64-bit version\r
18 default = (1 << 24) */\r
19 int lc; /* 0 <= lc <= 8, default = 3 */\r
20 int lp; /* 0 <= lp <= 4, default = 0 */\r
21 int pb; /* 0 <= pb <= 4, default = 2 */\r
22 int algo; /* 0 - fast, 1 - normal, default = 1 */\r
23 int fb; /* 5 <= fb <= 273, default = 32 */\r
24 int btMode; /* 0 - hashChain Mode, 1 - binTree mode - normal, default = 1 */\r
25 int numHashBytes; /* 2, 3 or 4, default = 4 */\r
26 UInt32 mc; /* 1 <= mc <= (1 << 30), default = 32 */\r
27 unsigned writeEndMark; /* 0 - do not write EOPM, 1 - write EOPM, default = 0 */\r
28 int numThreads; /* 1 or 2, default = 2 */\r
29\r
30 UInt64 reduceSize; /* estimated size of data that will be compressed. default = (UInt64)(Int64)-1.\r
31 Encoder uses this value to reduce dictionary size */\r
32\r
33 UInt64 affinity;\r
34} CLzmaEncProps;\r
35\r
36void LzmaEncProps_Init(CLzmaEncProps *p);\r
37void LzmaEncProps_Normalize(CLzmaEncProps *p);\r
38UInt32 LzmaEncProps_GetDictSize(const CLzmaEncProps *props2);\r
39\r
40\r
41/* ---------- CLzmaEncHandle Interface ---------- */\r
42\r
43/* LzmaEnc* functions can return the following exit codes:\r
44SRes:\r
45 SZ_OK - OK\r
46 SZ_ERROR_MEM - Memory allocation error\r
47 SZ_ERROR_PARAM - Incorrect paramater in props\r
48 SZ_ERROR_WRITE - ISeqOutStream write callback error\r
49 SZ_ERROR_OUTPUT_EOF - output buffer overflow - version with (Byte *) output\r
50 SZ_ERROR_PROGRESS - some break from progress callback\r
51 SZ_ERROR_THREAD - error in multithreading functions (only for Mt version)\r
52*/\r
53\r
54typedef void * CLzmaEncHandle;\r
55\r
56CLzmaEncHandle LzmaEnc_Create(ISzAllocPtr alloc);\r
57void LzmaEnc_Destroy(CLzmaEncHandle p, ISzAllocPtr alloc, ISzAllocPtr allocBig);\r
58\r
59SRes LzmaEnc_SetProps(CLzmaEncHandle p, const CLzmaEncProps *props);\r
60void LzmaEnc_SetDataSize(CLzmaEncHandle p, UInt64 expectedDataSiize);\r
61SRes LzmaEnc_WriteProperties(CLzmaEncHandle p, Byte *properties, SizeT *size);\r
62unsigned LzmaEnc_IsWriteEndMark(CLzmaEncHandle p);\r
63\r
64SRes LzmaEnc_Encode(CLzmaEncHandle p, ISeqOutStream *outStream, ISeqInStream *inStream,\r
65 ICompressProgress *progress, ISzAllocPtr alloc, ISzAllocPtr allocBig);\r
66SRes LzmaEnc_MemEncode(CLzmaEncHandle p, Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen,\r
67 int writeEndMark, ICompressProgress *progress, ISzAllocPtr alloc, ISzAllocPtr allocBig);\r
68\r
69\r
70/* ---------- One Call Interface ---------- */\r
71\r
72SRes LzmaEncode(Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen,\r
73 const CLzmaEncProps *props, Byte *propsEncoded, SizeT *propsSize, int writeEndMark,\r
74 ICompressProgress *progress, ISzAllocPtr alloc, ISzAllocPtr allocBig);\r
75\r
76EXTERN_C_END\r
77\r
78#endif\r