Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ShrinkDecoder.h « Shrink « Compress « 7zip - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1c15ea8aa67cf39db4798a45391fe89c22e61eb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// ShrinkDecoder.h

#ifndef __SHRINK_DECODER_H
#define __SHRINK_DECODER_H

#include "../../../Common/MyCom.h"

#include "../../ICoder.h"

namespace NCompress {
namespace NShrink {

const int kNumMaxBits = 13;   
const UInt32 kNumItems = 1 << kNumMaxBits;   

class CDecoder :
  public ICompressCoder,
  public CMyUnknownImp
{
  UInt16 _parents[kNumItems];
  Byte _suffixes[kNumItems];
  Byte _stack[kNumItems];
  bool _isFree[kNumItems];
  bool _isParent[kNumItems];
public:
  MY_UNKNOWN_IMP

  STDMETHOD(CodeReal)(ISequentialInStream *inStream, ISequentialOutStream *outStream, 
      const UInt64 *inSize, const UInt64 *outSize,
      ICompressProgressInfo *progress);
  
  STDMETHOD(Code)(ISequentialInStream *inStream, ISequentialOutStream *outStream, 
      const UInt64 *inSize, const UInt64 *outSize,
      ICompressProgressInfo *progress);
};

}}

#endif