| 389 | } |
| 390 | |
| 391 | static inline void put_sbits63(PutBitContext *pb, int n, int64_t value) |
| 392 | { |
| 393 | av_assert2(n >= 0 && n < 64); |
| 394 | |
| 395 | put_bits63(pb, n, (uint64_t)(value) & (~(UINT64_MAX << n))); |
| 396 | } |
| 397 | |
| 398 | /** |
| 399 | * Return the pointer to the byte where the bitstream writer will put |
no test coverage detected