* @return the number of bytes output so far; may only be called * when the PutBitContext is freshly initialized or flushed. */
| 97 | * when the PutBitContext is freshly initialized or flushed. |
| 98 | */ |
| 99 | static inline int put_bytes_output(const PutBitContext *s) |
| 100 | { |
| 101 | av_assert2(s->bit_left == BUF_BITS); |
| 102 | return s->buf_ptr - s->buf; |
| 103 | } |
| 104 | |
| 105 | /** |
| 106 | * @param round_up When set, the number of bits written so far will be |
no outgoing calls
no test coverage detected