summaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/BitStream.hh
blob: 7d65b0db4061b6101de15bf9a8f939c58c7ea4e7 (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
// Read bits from a bit stream.  See BitWriter for writing.

#ifndef __BITSTREAM_HH__
#define __BITSTREAM_HH__

#include <qpdf/DLL.hh>

class BitStream
{
  public:
    DLL_EXPORT
    BitStream(unsigned char const* p, int nbytes);
    DLL_EXPORT
    void reset();
    DLL_EXPORT
    unsigned long getBits(int nbits);
    DLL_EXPORT
    void skipToNextByte();

  private:
    unsigned char const* start;
    int nbytes;

    unsigned char const* p;
    unsigned int bit_offset;
    unsigned int bits_available;
};

#endif // __BITSTREAM_HH__