File: BitWriter.cc

package info (click to toggle)
qpdf 12.3.0-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 72,644 kB
  • sloc: cpp: 59,031; perl: 12,172; ansic: 6,809; sh: 1,231; python: 1,041; xml: 43; makefile: 42
file content (43 lines) | stat: -rw-r--r-- 893 bytes parent folder | download
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
41
42
43
#include <qpdf/BitWriter.hh>

// See comments in bits_functions.hh
#define BITS_WRITE 1
#include <qpdf/bits_functions.hh>

BitWriter::BitWriter(Pipeline* pl) :
    pl(pl)
{
}

void
BitWriter::writeBits(unsigned long long val, size_t bits)
{
    write_bits(this->ch, this->bit_offset, val, bits, this->pl);
}

void
BitWriter::writeBitsSigned(long long val, size_t bits)
{
    unsigned long long uval = 0;
    if (val < 0) {
        uval = (1ULL << bits) + static_cast<unsigned long long>(val);
    } else {
        uval = static_cast<unsigned long long>(val);
    }
    writeBits(uval, bits);
}

void
BitWriter::writeBitsInt(int val, size_t bits)
{
    writeBits(static_cast<unsigned long long>(val), bits);
}

void
BitWriter::flush()
{
    if (bit_offset < 7) {
        size_t bits_to_write = bit_offset + 1;
        write_bits(this->ch, this->bit_offset, 0, bits_to_write, this->pl);
    }
}