MCPcopy Create free account
hub / github.com/LASzip/LASzip / readBit

Method readBit

unused/rangedecoder.cpp:160–166  ·  view source on GitHub ↗

Decode a bit without modelling */

Source from the content-addressed store, hash-verified

158
159/* Decode a bit without modelling */
160U32 RangeDecoder::readBit()
161{
162 U32 tmp;
163 tmp = culshift(1);
164 update(1, tmp, 2);
165 return tmp;
166}
167
168/* Decode bits without modelling */
169U32 RangeDecoder::readBits(U32 bits)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected