2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-05-31 17:30:54 +00:00
qpdf/libqpdf/qpdf/Pl_LZWDecoder.hh
Jay Berkenbilt f3d7c26de1 removed qexc; non-compatible ABI change
git-svn-id: svn+q:///qpdf/trunk@709 71b93d88-0707-0410-a8cf-f5a4172ac649
2009-09-26 18:36:04 +00:00

44 lines
963 B
C++

#ifndef __PL_LZWDECODER_HH__
#define __PL_LZWDECODER_HH__
#include <qpdf/Pipeline.hh>
#include <qpdf/Buffer.hh>
#include <vector>
class Pl_LZWDecoder: public Pipeline
{
public:
DLL_EXPORT
Pl_LZWDecoder(char const* identifier, Pipeline* next,
bool early_code_change);
DLL_EXPORT
virtual ~Pl_LZWDecoder();
DLL_EXPORT
virtual void write(unsigned char* buf, int len);
DLL_EXPORT
virtual void finish();
private:
void sendNextCode();
void handleCode(int code);
unsigned char getFirstChar(int code);
void addToTable(unsigned char next);
// members used for converting bits to codes
unsigned char buf[3];
int code_size;
int next;
int byte_pos;
int bit_pos; // left to right: 01234567
int bits_available;
// members used for handle LZW decompression
bool code_change_delta;
bool eod;
std::vector<Buffer> table;
int last_code;
};
#endif // __PL_LZWDECODER_HH__