| 4211 | } |
| 4212 | |
| 4213 | stbi_inline static unsigned int stbi__zreceive(stbi__zbuf *z, int n) |
| 4214 | { |
| 4215 | unsigned int k; |
| 4216 | if (z->num_bits < n) stbi__fill_bits(z); |
| 4217 | k = z->code_buffer & ((1 << n) - 1); |
| 4218 | z->code_buffer >>= n; |
| 4219 | z->num_bits -= n; |
| 4220 | return k; |
| 4221 | } |
| 4222 | |
| 4223 | static int stbi__zhuffman_decode_slowpath(stbi__zbuf *a, stbi__zhuffman *z) |
| 4224 | { |
no test coverage detected