aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/Pl_LZWDecoder.hh
blob: 95ec55b3581e41b6fed8fe8b5d504607e2672b8a (plain) (blame)
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

#ifndef __PL_LZWDECODER_HH__
#define __PL_LZWDECODER_HH__

#include <qpdf/Pipeline.hh>

#include <qpdf/Buffer.hh>
#include <vector>

class Pl_LZWDecoder: public Pipeline
{
  public:
    Pl_LZWDecoder(char const* identifier, Pipeline* next,
		  bool early_code_change);
    virtual ~Pl_LZWDecoder();
    virtual void write(unsigned char* buf, int len);
    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__