| 133 | } |
| 134 | |
| 135 | std::vector<bool> Decoder::readRawBits(unsigned count) |
| 136 | { |
| 137 | auto bits = _decoder->readBits(count); |
| 138 | _recordBits.insert(_recordBits.end(), bits.begin(), bits.end()); |
| 139 | return bits; |
| 140 | } |
| 141 | |
| 142 | uint8_t Decoder::readRaw8() |
| 143 | { |