Tizen 2.1 base
[platform/upstream/hplip.git] / prnt / hpcups / LidilCompress.h
1 /*****************************************************************************\
2   LidilCompress.h : Defnition of LidilCompress 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
31 #ifndef LIDIL_COMPRESS_H
32 #define LIDIL_COMPRESS_H
33
34 #define ALLOW_FILL_NEXT_CMD 1
35
36 #define FILL_0000_CMD  0x1000
37 #define FILL_FFFF_CMD  0x2000
38 #define FILL_NEXT_CMD  0x3000
39 #define FILL_IMAGE_CMD 0x4000
40 #define FILL_ODD_CMD   0x5000
41 #define FILL_EVEN_CMD  0x6000
42
43 #define MAX_HEADER_FRAME_SIZE 512
44 #define MAX_DATA_FRAME_SIZE   6048
45 #define MAX_RUNLENGTH         5
46
47 typedef enum
48 {
49   IN_NOT,
50   IN_FIRST,
51   IN_IMAGE,
52   IN_COPY
53 } LDLCOMPMODE;
54
55 class LidilCompress
56 {
57 public:
58     LidilCompress (bool bLittleEndian) : m_bLittleEndian(bLittleEndian) {}
59     ~LidilCompress () {}
60     bool      Init(UInt16 *data, UInt16 datasize);
61     bool      GetFrameInfo(BYTE **outdata, UInt16 *datasize);
62     void      CompressData(Int16 compressmode = 1);
63     UInt16    FlushCopy(UInt16 value);
64     UInt16    FlushImage();
65 private:
66     UInt16  *m_out_ptr;
67     UInt16  *m_image_ptr; /* image ptr points into the raw data */
68     UInt16  m_out_cnt;
69     UInt16  m_image_cnt;
70     UInt16  m_copy_cnt;
71     UInt16  m_out_array[2048+16];
72     UInt16  *m_raw_data;
73     UInt16  m_run_length; /* minimun run length */
74     UInt16  m_data_length;  /* actual data size in record */
75     bool    m_bLittleEndian;
76 };
77
78 #endif //  LIDIL_COMPRESS_H
79