goat3d

view libs/openctm/liblzma/LzmaDec.h @ 53:6d514398a728

fixed a merge mistake
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 17 Jan 2014 18:30:35 +0200
parents
children
line source
1 /* LzmaDec.h -- LZMA Decoder
2 2008-10-04 : Igor Pavlov : Public domain */
4 #ifndef __LZMADEC_H
5 #define __LZMADEC_H
7 #include "Types.h"
9 /* #define _LZMA_PROB32 */
10 /* _LZMA_PROB32 can increase the speed on some CPUs,
11 but memory usage for CLzmaDec::probs will be doubled in that case */
13 #ifdef _LZMA_PROB32
14 #define CLzmaProb UInt32
15 #else
16 #define CLzmaProb UInt16
17 #endif
20 /* ---------- LZMA Properties ---------- */
22 #define LZMA_PROPS_SIZE 5
24 typedef struct _CLzmaProps
25 {
26 unsigned lc, lp, pb;
27 UInt32 dicSize;
28 } CLzmaProps;
30 /* LzmaProps_Decode - decodes properties
31 Returns:
32 SZ_OK
33 SZ_ERROR_UNSUPPORTED - Unsupported properties
34 */
36 SRes LzmaProps_Decode(CLzmaProps *p, const Byte *data, unsigned size);
39 /* ---------- LZMA Decoder state ---------- */
41 /* LZMA_REQUIRED_INPUT_MAX = number of required input bytes for worst case.
42 Num bits = log2((2^11 / 31) ^ 22) + 26 < 134 + 26 = 160; */
44 #define LZMA_REQUIRED_INPUT_MAX 20
46 typedef struct
47 {
48 CLzmaProps prop;
49 CLzmaProb *probs;
50 Byte *dic;
51 const Byte *buf;
52 UInt32 range, code;
53 SizeT dicPos;
54 SizeT dicBufSize;
55 UInt32 processedPos;
56 UInt32 checkDicSize;
57 unsigned state;
58 UInt32 reps[4];
59 unsigned remainLen;
60 int needFlush;
61 int needInitState;
62 UInt32 numProbs;
63 unsigned tempBufSize;
64 Byte tempBuf[LZMA_REQUIRED_INPUT_MAX];
65 } CLzmaDec;
67 #define LzmaDec_Construct(p) { (p)->dic = 0; (p)->probs = 0; }
69 void LzmaDec_Init(CLzmaDec *p);
71 /* There are two types of LZMA streams:
72 0) Stream with end mark. That end mark adds about 6 bytes to compressed size.
73 1) Stream without end mark. You must know exact uncompressed size to decompress such stream. */
75 typedef enum
76 {
77 LZMA_FINISH_ANY, /* finish at any point */
78 LZMA_FINISH_END /* block must be finished at the end */
79 } ELzmaFinishMode;
81 /* ELzmaFinishMode has meaning only if the decoding reaches output limit !!!
83 You must use LZMA_FINISH_END, when you know that current output buffer
84 covers last bytes of block. In other cases you must use LZMA_FINISH_ANY.
86 If LZMA decoder sees end marker before reaching output limit, it returns SZ_OK,
87 and output value of destLen will be less than output buffer size limit.
88 You can check status result also.
90 You can use multiple checks to test data integrity after full decompression:
91 1) Check Result and "status" variable.
92 2) Check that output(destLen) = uncompressedSize, if you know real uncompressedSize.
93 3) Check that output(srcLen) = compressedSize, if you know real compressedSize.
94 You must use correct finish mode in that case. */
96 typedef enum
97 {
98 LZMA_STATUS_NOT_SPECIFIED, /* use main error code instead */
99 LZMA_STATUS_FINISHED_WITH_MARK, /* stream was finished with end mark. */
100 LZMA_STATUS_NOT_FINISHED, /* stream was not finished */
101 LZMA_STATUS_NEEDS_MORE_INPUT, /* you must provide more input bytes */
102 LZMA_STATUS_MAYBE_FINISHED_WITHOUT_MARK /* there is probability that stream was finished without end mark */
103 } ELzmaStatus;
105 /* ELzmaStatus is used only as output value for function call */
108 /* ---------- Interfaces ---------- */
110 /* There are 3 levels of interfaces:
111 1) Dictionary Interface
112 2) Buffer Interface
113 3) One Call Interface
114 You can select any of these interfaces, but don't mix functions from different
115 groups for same object. */
118 /* There are two variants to allocate state for Dictionary Interface:
119 1) LzmaDec_Allocate / LzmaDec_Free
120 2) LzmaDec_AllocateProbs / LzmaDec_FreeProbs
121 You can use variant 2, if you set dictionary buffer manually.
122 For Buffer Interface you must always use variant 1.
124 LzmaDec_Allocate* can return:
125 SZ_OK
126 SZ_ERROR_MEM - Memory allocation error
127 SZ_ERROR_UNSUPPORTED - Unsupported properties
128 */
130 SRes LzmaDec_AllocateProbs(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAlloc *alloc);
131 void LzmaDec_FreeProbs(CLzmaDec *p, ISzAlloc *alloc);
133 SRes LzmaDec_Allocate(CLzmaDec *state, const Byte *prop, unsigned propsSize, ISzAlloc *alloc);
134 void LzmaDec_Free(CLzmaDec *state, ISzAlloc *alloc);
136 /* ---------- Dictionary Interface ---------- */
138 /* You can use it, if you want to eliminate the overhead for data copying from
139 dictionary to some other external buffer.
140 You must work with CLzmaDec variables directly in this interface.
142 STEPS:
143 LzmaDec_Constr()
144 LzmaDec_Allocate()
145 for (each new stream)
146 {
147 LzmaDec_Init()
148 while (it needs more decompression)
149 {
150 LzmaDec_DecodeToDic()
151 use data from CLzmaDec::dic and update CLzmaDec::dicPos
152 }
153 }
154 LzmaDec_Free()
155 */
157 /* LzmaDec_DecodeToDic
159 The decoding to internal dictionary buffer (CLzmaDec::dic).
160 You must manually update CLzmaDec::dicPos, if it reaches CLzmaDec::dicBufSize !!!
162 finishMode:
163 It has meaning only if the decoding reaches output limit (dicLimit).
164 LZMA_FINISH_ANY - Decode just dicLimit bytes.
165 LZMA_FINISH_END - Stream must be finished after dicLimit.
167 Returns:
168 SZ_OK
169 status:
170 LZMA_STATUS_FINISHED_WITH_MARK
171 LZMA_STATUS_NOT_FINISHED
172 LZMA_STATUS_NEEDS_MORE_INPUT
173 LZMA_STATUS_MAYBE_FINISHED_WITHOUT_MARK
174 SZ_ERROR_DATA - Data error
175 */
177 SRes LzmaDec_DecodeToDic(CLzmaDec *p, SizeT dicLimit,
178 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
181 /* ---------- Buffer Interface ---------- */
183 /* It's zlib-like interface.
184 See LzmaDec_DecodeToDic description for information about STEPS and return results,
185 but you must use LzmaDec_DecodeToBuf instead of LzmaDec_DecodeToDic and you don't need
186 to work with CLzmaDec variables manually.
188 finishMode:
189 It has meaning only if the decoding reaches output limit (*destLen).
190 LZMA_FINISH_ANY - Decode just destLen bytes.
191 LZMA_FINISH_END - Stream must be finished after (*destLen).
192 */
194 SRes LzmaDec_DecodeToBuf(CLzmaDec *p, Byte *dest, SizeT *destLen,
195 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
198 /* ---------- One Call Interface ---------- */
200 /* LzmaDecode
202 finishMode:
203 It has meaning only if the decoding reaches output limit (*destLen).
204 LZMA_FINISH_ANY - Decode just destLen bytes.
205 LZMA_FINISH_END - Stream must be finished after (*destLen).
207 Returns:
208 SZ_OK
209 status:
210 LZMA_STATUS_FINISHED_WITH_MARK
211 LZMA_STATUS_NOT_FINISHED
212 LZMA_STATUS_MAYBE_FINISHED_WITHOUT_MARK
213 SZ_ERROR_DATA - Data error
214 SZ_ERROR_MEM - Memory allocation error
215 SZ_ERROR_UNSUPPORTED - Unsupported properties
216 SZ_ERROR_INPUT_EOF - It needs more bytes in input buffer (src).
217 */
219 SRes LzmaDecode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen,
220 const Byte *propData, unsigned propSize, ELzmaFinishMode finishMode,
221 ELzmaStatus *status, ISzAlloc *alloc);
223 #endif