| 381 | } |
| 382 | |
| 383 | static inline void skip_bits(GetBitContext *s, int n) |
| 384 | { |
| 385 | OPEN_READER_NOSIZE_NOCACHE(re, s); |
| 386 | OPEN_READER_SIZE(re, s); |
| 387 | LAST_SKIP_BITS(re, s, n); |
| 388 | CLOSE_READER(re, s); |
| 389 | } |
| 390 | |
| 391 | static inline unsigned int get_bits1(GetBitContext *s) |
| 392 | { |
no outgoing calls
no test coverage detected