mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-17 01:55:09 +00:00
5d4cad9c02
Significantly improve the code's use of off_t for file offsets, size_t for memory sizes, and integer types in cases where there has to be compatibility with external interfaces. Rework sections of the code that would have prevented qpdf from working on files larger than 2 (or maybe 4) GB in size.
29 lines
486 B
C++
29 lines
486 B
C++
#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
|
|
BitWriter::writeBits(unsigned long val, unsigned int bits)
|
|
{
|
|
write_bits(this->ch, this->bit_offset, val, bits, this->pl);
|
|
}
|
|
|
|
void
|
|
BitWriter::flush()
|
|
{
|
|
if (bit_offset < 7)
|
|
{
|
|
int bits_to_write = bit_offset + 1;
|
|
write_bits(this->ch, this->bit_offset, 0, bits_to_write, this->pl);
|
|
}
|
|
}
|