* Show 0-32 bits. */
| 496 | * Show 0-32 bits. |
| 497 | */ |
| 498 | static inline unsigned int show_bits_long(GetBitContext *s, int n) |
| 499 | { |
| 500 | if (n <= MIN_CACHE_BITS) { |
| 501 | return show_bits(s, n); |
| 502 | } else { |
| 503 | GetBitContext gb = *s; |
| 504 | return get_bits_long(&gb, n); |
| 505 | } |
| 506 | } |
| 507 | |
| 508 | |
| 509 | /** |