* Returns the pointer to the byte where the bitstream writer will put * the next bit. */
| 290 | * the next bit. |
| 291 | */ |
| 292 | static inline uint8_t* put_bits_ptr(PutBitContext *s) |
| 293 | { |
| 294 | #ifdef ALT_BITSTREAM_WRITER |
| 295 | return s->buf + (s->index>>3); |
| 296 | #else |
| 297 | return s->buf_ptr; |
| 298 | #endif |
| 299 | } |
| 300 | |
| 301 | /** |
| 302 | * Skips the given number of bytes. |
no outgoing calls
no test coverage detected