File: UnBitArray.h

package info (click to toggle)
libjmac-java 1.74-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,780 kB
  • sloc: java: 9,279; cpp: 4,375; xml: 369; makefile: 31; sh: 12
file content (51 lines) | stat: -rw-r--r-- 1,300 bytes parent folder | download | duplicates (5)
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
40
41
42
43
44
45
46
47
48
49
50
51
#ifndef APE_UNBITARRAY_H
#define APE_UNBITARRAY_H

#include "UnBitArrayBase.h"

class IAPEDecompress;

struct RANGE_CODER_STRUCT_DECOMPRESS
{
    unsigned int low;       // low end of interval
    unsigned int range;     // length of interval
    unsigned int buffer;    // buffer for input/output
};

class CUnBitArray : public CUnBitArrayBase
{
public:

    // construction/destruction
    CUnBitArray(CIO * pIO, int nVersion);
    ~CUnBitArray();

    unsigned int DecodeValue(DECODE_VALUE_METHOD DecodeMethod, int nParam1 = 0, int nParam2 = 0);
    
    void GenerateArray(int * pOutputArray, int nElements, int nBytesRequired = -1);
    
    int DecodeValueRange(UNBIT_ARRAY_STATE & BitArrayState);

    void FlushState(UNBIT_ARRAY_STATE & BitArrayState);
    void FlushBitArray();
    void Finalize();
    
private:

    void GenerateArrayRange(int * pOutputArray, int nElements);
    
    // data 
    int m_nFlushCounter;
    int m_nFinalizeCounter;
    
    RANGE_CODER_STRUCT_DECOMPRESS    m_RangeCoderInfo;
    
    uint32 m_nRefillBitThreshold;
    
    // functions
    inline int RangeDecodeFast(int nShift);
    inline int RangeDecodeFastWithUpdate(int nShift);
    inline unsigned char GetC();
};

#endif // #ifndef APE_UNBITARRAY_H