* Reads some bits in one go (ie the above two routines combined). */
| 287 | * Reads some bits in one go (ie the above two routines combined). |
| 288 | */ |
| 289 | static unsigned long bit_read (bit_stream *bs, unsigned long mask, |
| 290 | int n, unsigned char **p) { |
| 291 | unsigned long result = bit_peek (bs, mask); |
| 292 | bit_advance (bs, n, p); |
| 293 | return result; |
| 294 | } |
| 295 | |
| 296 | /* |
| 297 | * Return the big-endian longword at p. |
no test coverage detected