| 213 | //================ |
| 214 | |
| 215 | BitpackEncoder::BitpackEncoder( unsigned bytestreamNumber, SourceDestBuffer &sbuf, |
| 216 | unsigned outputMaxSize, unsigned alignmentSize ) : |
| 217 | Encoder( bytestreamNumber ), sourceBuffer_( sbuf.impl() ), outBuffer_( outputMaxSize ), |
| 218 | outBufferFirst_( 0 ), outBufferEnd_( 0 ), outBufferAlignmentSize_( alignmentSize ), |
| 219 | currentRecordIndex_( 0 ) |
| 220 | { |
| 221 | } |
| 222 | |
| 223 | unsigned BitpackEncoder::sourceBufferNextIndex() |
| 224 | { |
nothing calls this directly
no outgoing calls
no test coverage detected