blob: e62bdb33f40b45aae9a85662b04fad76f0970fcc [file] [log] [blame]
Stefan Reinauer2e200cd2012-10-30 14:02:45 -07001/* LzmaEnc.h -- LZMA Encoder
22009-02-07 : Igor Pavlov : Public domain */
3
4#ifndef __LZMA_ENC_H
5#define __LZMA_ENC_H
6
7#include "Types.h"
8
Stefan Reinauer2e200cd2012-10-30 14:02:45 -07009#define LZMA_PROPS_SIZE 5
10
Alexandru Gagniuc9ad52fe2014-01-27 20:57:54 -060011struct CLzmaEncProps
Stefan Reinauer2e200cd2012-10-30 14:02:45 -070012{
13 int level; /* 0 <= level <= 9 */
Alexandru Gagniuc91e9f272014-01-26 22:55:01 -060014 uint32_t dictSize; /* (1 << 12) <= dictSize <= (1 << 27) for 32-bit version
Stefan Reinauer2e200cd2012-10-30 14:02:45 -070015 (1 << 12) <= dictSize <= (1 << 30) for 64-bit version
16 default = (1 << 24) */
17 int lc; /* 0 <= lc <= 8, default = 3 */
18 int lp; /* 0 <= lp <= 4, default = 0 */
19 int pb; /* 0 <= pb <= 4, default = 2 */
20 int algo; /* 0 - fast, 1 - normal, default = 1 */
21 int fb; /* 5 <= fb <= 273, default = 32 */
22 int btMode; /* 0 - hashChain Mode, 1 - binTree mode - normal, default = 1 */
23 int numHashBytes; /* 2, 3 or 4, default = 4 */
Alexandru Gagniuc91e9f272014-01-26 22:55:01 -060024 uint32_t mc; /* 1 <= mc <= (1 << 30), default = 32 */
Stefan Reinauer2e200cd2012-10-30 14:02:45 -070025 unsigned writeEndMark; /* 0 - do not write EOPM, 1 - write EOPM, default = 0 */
26 int numThreads; /* 1 or 2, default = 2 */
Alexandru Gagniuc9ad52fe2014-01-27 20:57:54 -060027};
Stefan Reinauer2e200cd2012-10-30 14:02:45 -070028
Alexandru Gagniuc9ad52fe2014-01-27 20:57:54 -060029void LzmaEncProps_Init(struct CLzmaEncProps *p);
30void LzmaEncProps_Normalize(struct CLzmaEncProps *p);
31uint32_t LzmaEncProps_GetDictSize(const struct CLzmaEncProps *props2);
Stefan Reinauer2e200cd2012-10-30 14:02:45 -070032
33
34/* ---------- CLzmaEncHandle Interface ---------- */
35
36/* LzmaEnc_* functions can return the following exit codes:
37Returns:
38 SZ_OK - OK
39 SZ_ERROR_MEM - Memory allocation error
40 SZ_ERROR_PARAM - Incorrect paramater in props
41 SZ_ERROR_WRITE - Write callback error.
42 SZ_ERROR_PROGRESS - some break from progress callback
43 SZ_ERROR_THREAD - errors in multithreading functions (only for Mt version)
44*/
45
46typedef void * CLzmaEncHandle;
47
Alexandru Gagniuc9ad52fe2014-01-27 20:57:54 -060048CLzmaEncHandle LzmaEnc_Create(struct ISzAlloc *alloc);
49void LzmaEnc_Destroy(CLzmaEncHandle p, struct ISzAlloc *alloc, struct ISzAlloc *allocBig);
50SRes LzmaEnc_SetProps(CLzmaEncHandle p, const struct CLzmaEncProps *props);
Alexandru Gagniuc91e9f272014-01-26 22:55:01 -060051SRes LzmaEnc_WriteProperties(CLzmaEncHandle p, uint8_t *properties, size_t *size);
Alexandru Gagniuc9ad52fe2014-01-27 20:57:54 -060052SRes LzmaEnc_Encode(CLzmaEncHandle p, struct ISeqOutStream *outStream, struct ISeqInStream *inStream,
53 struct ICompressProgress *progress, struct ISzAlloc *alloc, struct ISzAlloc *allocBig);
Alexandru Gagniuc91e9f272014-01-26 22:55:01 -060054SRes LzmaEnc_MemEncode(CLzmaEncHandle p, uint8_t *dest, size_t *destLen, const uint8_t *src, size_t srcLen,
Alexandru Gagniuc9ad52fe2014-01-27 20:57:54 -060055 int writeEndMark, struct ICompressProgress *progress, struct ISzAlloc *alloc, struct ISzAlloc *allocBig);
Stefan Reinauer2e200cd2012-10-30 14:02:45 -070056
57/* ---------- One Call Interface ---------- */
58
59/* LzmaEncode
60Return code:
61 SZ_OK - OK
62 SZ_ERROR_MEM - Memory allocation error
63 SZ_ERROR_PARAM - Incorrect paramater
64 SZ_ERROR_OUTPUT_EOF - output buffer overflow
65 SZ_ERROR_THREAD - errors in multithreading functions (only for Mt version)
66*/
67
Alexandru Gagniuc91e9f272014-01-26 22:55:01 -060068SRes LzmaEncode(uint8_t *dest, size_t *destLen, const uint8_t *src, size_t srcLen,
Alexandru Gagniuc9ad52fe2014-01-27 20:57:54 -060069 const struct CLzmaEncProps *props, uint8_t *propsEncoded, size_t *propsSize, int writeEndMark,
70 struct ICompressProgress *progress, struct ISzAlloc *alloc, struct ISzAlloc *allocBig);
Stefan Reinauer2e200cd2012-10-30 14:02:45 -070071
Stefan Reinauer2e200cd2012-10-30 14:02:45 -070072#endif