| 320 | } |
| 321 | |
| 322 | static inline int get_sbits(GetBitContext *s, int n) |
| 323 | { |
| 324 | register int tmp; |
| 325 | OPEN_READER(re, s); |
| 326 | av_assert2(n>0 && n<=25); |
| 327 | UPDATE_CACHE(re, s); |
| 328 | tmp = SHOW_SBITS(re, s, n); |
| 329 | LAST_SKIP_BITS(re, s, n); |
| 330 | CLOSE_READER(re, s); |
| 331 | return tmp; |
| 332 | } |
| 333 | |
| 334 | /** |
| 335 | * Read 1-25 bits. |
no outgoing calls
no test coverage detected