Tizen 2.1 base
[platform/upstream/hplip.git] / prnt / hpcups / ModeJbig.h
1 /*****************************************************************************\
2   ModeJbig.h : Interface for the ModeJbig class
3
4   Copyright (c) 1996 - 2009, Hewlett-Packard Co.
5   All rights reserved.
6
7   Redistribution and use in source and binary forms, with or without
8   modification, are permitted provided that the following conditions
9   are met:
10   1. Redistributions of source code must retain the above copyright
11      notice, this list of conditions and the following disclaimer.
12   2. Redistributions in binary form must reproduce the above copyright
13      notice, this list of conditions and the following disclaimer in the
14      documentation and/or other materials provided with the distribution.
15   3. Neither the name of Hewlett-Packard nor the names of its
16      contributors may be used to endorse or promote products derived
17      from this software without specific prior written permission.
18
19   THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
20   WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21   MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
22   NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
24   TO, PATENT INFRINGEMENT; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
25   OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
26   ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28   THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
30   Author: Naga Samrat Chowdary Narla,
31 \*****************************************************************************/
32
33 #ifndef MODE_JBIG_H
34 #define MODE_JBIG_H
35
36 #include "CommonDefinitions.h"
37 #include "Processor.h"
38 #include "Compressor.h"
39
40 #define INDY_STRIP_HEIGHT 128
41 typedef enum
42 {
43     ZJSTREAM,
44     ZXSTREAM,
45     ZJCOLOR,
46     ZJCOLOR2
47 } ZJPLATFORM;
48
49 class ModeJbig : public Compressor
50 {
51 public:
52     ModeJbig(unsigned int RasterSize);
53     virtual ~ModeJbig();
54     bool Process(RASTERDATA *input);
55     bool NextOutputRaster(RASTERDATA &next_raster);
56     DRIVER_ERROR Init(int height, int num_planes, int bpp, ZJPLATFORM ezj_platform);
57     void NewPage()
58     {
59         m_pszCurPtr = m_pszInputRasterData;
60         if (m_pszCurPtr)
61             memset (m_pszCurPtr, 0, (m_iWidth * m_iLastRaster * m_iPlanes * m_iBPP));
62     }
63     void Flush();
64     void SetBandHeight(int height)
65     {
66         m_iLastRaster = height;
67     }
68     void SetLastBand()
69     {
70         m_bLastBand = true;
71     }
72
73 private:
74     void  compress(int plane_number = 0);
75     bool  processZJStream(RASTERDATA *input);
76     bool  processZXStream(RASTERDATA *input);
77     bool  processZJColor(RASTERDATA *input);
78
79     static const BYTE szByte1[256];
80     static const BYTE szByte2[256];
81
82     void   *m_hHPLibHandle;
83     int    m_iWidth;
84     int    m_iLastRaster;
85     int    m_iOrgHeight;
86     BYTE   *m_pszCurPtr;
87     BYTE   *m_pszInputRasterData;
88     int    m_iPlanes;
89     int    m_iBPP;
90     bool   m_bLastBand;
91     ZJPLATFORM    m_ezj_platform;
92     int    m_iP[4];
93     int    m_iCurRasterPerPlane[4];
94     int    m_iPlaneNumber;
95     int    m_iCurrentPlane;
96 }; // ModeJbig
97
98 #endif // MODE_JBIG_H
99