summaryrefslogtreecommitdiff
path: root/filter/source/graphicfilter/itiff/ccidecom.hxx
blob: 2543be82d052d072e5f8b7347a81529587cd6513 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/*************************************************************************
 *
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * Copyright 2000, 2010 Oracle and/or its affiliates.
 *
 * OpenOffice.org - a multi-platform office productivity suite
 *
 * This file is part of OpenOffice.org.
 *
 * OpenOffice.org is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version 3
 * only, as published by the Free Software Foundation.
 *
 * OpenOffice.org is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License version 3 for more details
 * (a copy is included in the LICENSE file that accompanied this code).
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3 along with OpenOffice.org.  If not, see
 * <http://www.openoffice.org/license.html>
 * for a copy of the LGPLv3 License.
 *
 ************************************************************************/

#ifndef _CCIDECOM_HXX
#define _CCIDECOM_HXX

#include <tools/stream.hxx>


#define CCI_OPTION_2D               1       // 2D-Komprimierung (statt 1D)
#define CCI_OPTION_EOL              2       // EOL-Codes am Ende jeder Zeile vorhanden
#define CCI_OPTION_BYTEALIGNEOL     4       // Fuellbits vor jedem EOL-Code, so dass
                                            // Ende von EOL auf Bytes aligend
#define CCI_OPTION_BYTEALIGNROW     8       // Rows beginnen immer auf Byte-Grenze
#define CCI_OPTION_INVERSEBITORDER  16

// Eintrag in eine Huffman-Tabelle:
struct CCIHuffmanTableEntry {
    USHORT nValue;    // Der Daten-Wert.
    USHORT nCode;     // Der Code durch den der Daten-Wert repraesentiert wird.
    USHORT nCodeBits; // Laenge des Codes in Bits.
};


// Eintrag in eine Hash-Tabelle zur schnellen Dekodierung
struct CCILookUpTableEntry {
    USHORT nValue;
    USHORT nCodeBits;
};


class CCIDecompressor {

public:

    CCIDecompressor( ULONG nOptions, UINT32 nImageWidth );
    ~CCIDecompressor();

    void StartDecompression( SvStream & rIStream );

    BOOL DecompressScanline(BYTE * pTarget, ULONG nTargetBits );

private:

    void MakeLookUp(const CCIHuffmanTableEntry * pHufTab,
                    const CCIHuffmanTableEntry * pHufTabSave,
                    CCILookUpTableEntry * pLookUp,
                    USHORT nHuffmanTableSize,
                    USHORT nMaxCodeBits);

    BOOL ReadEOL( UINT32 nMaxFillBits );

    BOOL Read2DTag();

    BYTE ReadBlackOrWhite();

    USHORT ReadCodeAndDecode(const CCILookUpTableEntry * pLookUp,
                             USHORT nMaxCodeBits);

    void FillBits(BYTE * pTarget, USHORT nTargetBits,
                  USHORT nBitPos, USHORT nNumBits,
                  BYTE nBlackOrWhite);

    USHORT CountBits(const BYTE * pData, USHORT nDataSizeBits,
                     USHORT nBitPos, BYTE nBlackOrWhite);

    void Read1DScanlineData(BYTE * pTarget, USHORT nTargetBits);

    void Read2DScanlineData(BYTE * pTarget, USHORT nTargetBits);

    BOOL bTableBad;

    BOOL bStatus;

    BYTE* pByteSwap;

    SvStream * pIStream;

    UINT32 nEOLCount;

    UINT32 nWidth;

    ULONG nOptions;

    BOOL bFirstEOL;

    CCILookUpTableEntry * pWhiteLookUp;
    CCILookUpTableEntry * pBlackLookUp;
    CCILookUpTableEntry * p2DModeLookUp;
    CCILookUpTableEntry * pUncompLookUp;

    ULONG nInputBitsBuf;
    USHORT nInputBitsBufSize;

    BYTE * pLastLine;
    ULONG nLastLineSize;
};


#endif