Tizen 2.1 base
[platform/upstream/hplip.git] / prnt / hpcups / Compressor.h
1 /*****************************************************************************\
2   Compressor.h : Interface for Compressor 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 COMPRESSOR_H
32 #define COMPRESSOR_H
33
34 #include "Processor.h"
35 #include "CommonDefinitions.h"
36
37 class Compressor : public Processor
38 {
39 public:
40     Compressor(unsigned int RasterSize, bool useseed);
41     virtual ~Compressor();
42     virtual bool Process(RASTERDATA* InputRaster=NULL)=0;
43     virtual void Flush() { }    // no pending output
44     unsigned int GetMaxOutputWidth();
45     virtual bool NextOutputRaster(RASTERDATA& next_raster)=0;
46     void SetSeedRow(BYTE* seed) { SeedRow = seed; }
47     DRIVER_ERROR constructor_error;
48
49     // buffer is public for use by GraphicsTranslator
50     BYTE* compressBuf;      // output buffer
51     BYTE* SeedRow;
52     bool UseSeedRow;
53     BYTE* originalKData;
54     unsigned int compressedsize;
55     unsigned int inputsize;
56     bool seeded;
57 }; // Compressor
58
59 #endif // COMPRESSOR_H
60