aboutsummaryrefslogtreecommitdiff
path: root/common/bitstream.h
AgeCommit message (Collapse)Author
2014-06-09COMMON: Added align() method for BitStreamEugene Sandulenko
2014-02-18COMMON: Make GPL headers consistent in themselves.Johannes Schickel
2011-10-21COMMON: Extend some method comments in Common::BitStreamSven Hesse
Adding examples to getBits() and addBit().
2011-10-21COMMON: Fix potential UB while shifting Common::BitStreamSven Hesse
Shifting a 32-bit value by more than 31 is undefined.
2011-08-27COMMON: Rewrite BitStream as a templateSven Hesse
This rewrites BitStream as a template, allowing for more different memory layouts of the actual bit data.
2011-07-19COMMON: Document the BitStream a bit moreSven Hesse
2011-07-18COMMON: Update class documentation to say they're now used by SCUMMMatthew Hoops
2011-07-18COMMON: Remove USE_BINK checks from header filesMatthew Hoops
2011-07-13BUILD: Allow for disabling Bink supportMatthew Hoops
2011-07-02COMMON: Add a BitStream classMatthew Hoops
Based on eos' BitStream