* Read 0-25 bits. */
| 351 | * Read 0-25 bits. |
| 352 | */ |
| 353 | static av_always_inline int get_bitsz(GetBitContext *s, int n) |
| 354 | { |
| 355 | return n ? get_bits(s, n) : 0; |
| 356 | } |
| 357 | |
| 358 | static inline unsigned int get_bits_le(GetBitContext *s, int n) |
| 359 | { |
no test coverage detected