| 558 | } |
| 559 | |
| 560 | static inline const uint8_t *align_get_bits(GetBitContext *s) |
| 561 | { |
| 562 | int n = -get_bits_count(s) & 7; |
| 563 | if (n) |
| 564 | skip_bits(s, n); |
| 565 | return s->buffer + (s->index >> 3); |
| 566 | } |
| 567 | |
| 568 | /** |
| 569 | * If the vlc code is invalid and max_depth=1, then no bits will be removed. |
no test coverage detected