Must have enough bits available with ensureBits */
| 572 | |
| 573 | /* Must have enough bits available with ensureBits */ |
| 574 | static void advanceBits(LodePNGBitReader* reader, size_t nbits) { |
| 575 | reader->buffer >>= nbits; |
| 576 | reader->bp += nbits; |
| 577 | } |
| 578 | |
| 579 | /* Must have enough bits available with ensureBits */ |
| 580 | static unsigned readBits(LodePNGBitReader* reader, size_t nbits) { |
no outgoing calls
no test coverage detected