* Initialises a bit stream with the first two bytes of the packed * data. */
| 248 | * data. |
| 249 | */ |
| 250 | static void bitread_init (bit_stream *bs, unsigned char **p) { |
| 251 | bs->bitbuf = lword (*p); |
| 252 | bs->bitcount = 16; |
| 253 | } |
| 254 | |
| 255 | /* |
| 256 | * Fixes up a bit stream after literals have been read out of the |