123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- #ifndef __LZMA_DEC_H
- #define __LZMA_DEC_H
- #include "Types.h"
- #ifdef _LZMA_PROB32
- #define CLzmaProb UInt32
- #else
- #define CLzmaProb UInt16
- #endif
- #define LZMA_PROPS_SIZE 5
- typedef struct _CLzmaProps
- {
- unsigned lc, lp, pb;
- UInt32 dicSize;
- } CLzmaProps;
- SRes LzmaProps_Decode(CLzmaProps *p, const Byte *data, unsigned size);
- #define LZMA_REQUIRED_INPUT_MAX 20
- typedef struct
- {
- CLzmaProps prop;
- CLzmaProb *probs;
- Byte *dic;
- const Byte *buf;
- UInt32 range, code;
- SizeT dicPos;
- SizeT dicBufSize;
- UInt32 processedPos;
- UInt32 checkDicSize;
- unsigned state;
- UInt32 reps[4];
- unsigned remainLen;
- int needFlush;
- int needInitState;
- UInt32 numProbs;
- unsigned tempBufSize;
- Byte tempBuf[LZMA_REQUIRED_INPUT_MAX];
- } CLzmaDec;
- #define LzmaDec_Construct(p) { (p)->dic = 0; (p)->probs = 0; }
- void LzmaDec_Init(CLzmaDec *p);
- typedef enum
- {
- LZMA_FINISH_ANY,
- LZMA_FINISH_END
- } ELzmaFinishMode;
- typedef enum
- {
- LZMA_STATUS_NOT_SPECIFIED,
- LZMA_STATUS_FINISHED_WITH_MARK,
- LZMA_STATUS_NOT_FINISHED,
- LZMA_STATUS_NEEDS_MORE_INPUT,
- LZMA_STATUS_MAYBE_FINISHED_WITHOUT_MARK
- } ELzmaStatus;
- SRes LzmaDec_AllocateProbs(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAlloc *alloc);
- void LzmaDec_FreeProbs(CLzmaDec *p, ISzAlloc *alloc);
- SRes LzmaDec_Allocate(CLzmaDec *state, const Byte *prop, unsigned propsSize, ISzAlloc *alloc);
- void LzmaDec_Free(CLzmaDec *state, ISzAlloc *alloc);
- SRes LzmaDec_DecodeToDic(CLzmaDec *p, SizeT dicLimit,
- const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
- SRes LzmaDec_DecodeToBuf(CLzmaDec *p, Byte *dest, SizeT *destLen,
- const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
- SRes LzmaDecode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen,
- const Byte *propData, unsigned propSize, ELzmaFinishMode finishMode,
- ELzmaStatus *status, ISzAlloc *alloc);
- #endif
|