2008-04-29 12:55:25 +00:00
|
|
|
#include <qpdf/BitWriter.hh>
|
|
|
|
|
|
|
|
// See comments in bits.cc
|
|
|
|
#define BITS_WRITE 1
|
|
|
|
#include "bits.icc"
|
|
|
|
|
|
|
|
BitWriter::BitWriter(Pipeline* pl) :
|
|
|
|
pl(pl),
|
|
|
|
ch(0),
|
|
|
|
bit_offset(7)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2019-06-21 03:35:23 +00:00
|
|
|
BitWriter::writeBits(unsigned long long val, size_t bits)
|
2008-04-29 12:55:25 +00:00
|
|
|
{
|
|
|
|
write_bits(this->ch, this->bit_offset, val, bits, this->pl);
|
|
|
|
}
|
|
|
|
|
2018-01-13 23:13:18 +00:00
|
|
|
void
|
2019-06-21 03:35:23 +00:00
|
|
|
BitWriter::writeBitsSigned(long long val, size_t bits)
|
2018-01-13 23:13:18 +00:00
|
|
|
{
|
|
|
|
unsigned long long uval = 0;
|
|
|
|
if (val < 0)
|
|
|
|
{
|
2019-06-21 03:35:23 +00:00
|
|
|
uval = (1ULL << bits) + static_cast<unsigned long long>(val);
|
2018-01-13 23:13:18 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
uval = static_cast<unsigned long long>(val);
|
|
|
|
}
|
|
|
|
writeBits(uval, bits);
|
|
|
|
}
|
|
|
|
|
2019-06-21 03:35:23 +00:00
|
|
|
void
|
|
|
|
BitWriter::writeBitsInt(int val, size_t bits)
|
|
|
|
{
|
|
|
|
writeBits(static_cast<unsigned long long>(val), bits);
|
|
|
|
}
|
|
|
|
|
2008-04-29 12:55:25 +00:00
|
|
|
void
|
|
|
|
BitWriter::flush()
|
|
|
|
{
|
|
|
|
if (bit_offset < 7)
|
|
|
|
{
|
2019-06-21 03:35:23 +00:00
|
|
|
size_t bits_to_write = bit_offset + 1;
|
2008-04-29 12:55:25 +00:00
|
|
|
write_bits(this->ch, this->bit_offset, 0, bits_to_write, this->pl);
|
|
|
|
}
|
|
|
|
}
|