* @return the number of bits available in the bitstream. */
| 133 | * @return the number of bits available in the bitstream. |
| 134 | */ |
| 135 | static inline int put_bits_left(PutBitContext* s) |
| 136 | { |
| 137 | return (s->buf_end - s->buf_ptr) * 8 - BUF_BITS + s->bit_left; |
| 138 | } |
| 139 | |
| 140 | /** |
| 141 | * @param round_up When set, the number of bits written will be |
no outgoing calls
no test coverage detected