soc/mediatek/mt8173: Remove unneeded header inclusion
[coreboot.git] / src / lib / lzmadecode.h
blob9ed352a564a739cef08409c353c567f3bdf19d6a
1 /*
2 LzmaDecode.h
3 LZMA Decoder interface
5 LZMA SDK 4.40 Copyright (c) 1999-2006 Igor Pavlov (2006-05-01)
6 http://www.7-zip.org/
8 LZMA SDK is licensed under two licenses:
9 1) GNU Lesser General Public License (GNU LGPL)
10 2) Common Public License (CPL)
11 It means that you can select one of these two licenses and
12 follow rules of that license.
14 SPECIAL EXCEPTION:
15 Igor Pavlov, as the author of this code, expressly permits you to
16 statically or dynamically link your code (or bind by name) to the
17 interfaces of this file without subjecting your linked code to the
18 terms of the CPL or GNU LGPL. Any modifications or additions
19 to this file, however, are subject to the LGPL or CPL terms.
22 #ifndef __LZMADECODE_H
23 #define __LZMADECODE_H
25 typedef unsigned char Byte;
26 typedef unsigned short UInt16;
27 typedef unsigned int UInt32;
28 typedef UInt32 SizeT;
30 #define CProb UInt16
32 #define LZMA_RESULT_OK 0
33 #define LZMA_RESULT_DATA_ERROR 1
36 #define LZMA_BASE_SIZE 1846
37 #define LZMA_LIT_SIZE 768
39 #define LZMA_PROPERTIES_SIZE 5
41 typedef struct _CLzmaProperties {
42 int lc;
43 int lp;
44 int pb;
45 } CLzmaProperties;
47 int LzmaDecodeProperties(CLzmaProperties *propsRes,
48 const unsigned char *propsData, int size);
50 #define LzmaGetNumProbs(Properties) (LZMA_BASE_SIZE + (LZMA_LIT_SIZE \
51 << ((Properties)->lc + (Properties)->lp)))
53 #define kLzmaNeedInitId (-2)
55 typedef struct _CLzmaDecoderState {
56 CLzmaProperties Properties;
57 CProb *Probs;
58 } CLzmaDecoderState;
61 int LzmaDecode(CLzmaDecoderState *vs,
62 const unsigned char *inStream, SizeT inSize, SizeT *inSizeProcessed,
63 unsigned char *outStream, SizeT outSize, SizeT *outSizeProcessed);
65 #endif