MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / put_bits_ptr

Function put_bits_ptr

libavcodec/put_bits.h:292–299  ·  view source on GitHub ↗

* Returns the pointer to the byte where the bitstream writer will put * the next bit. */

Source from the content-addressed store, hash-verified

290 * the next bit.
291 */
292static 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.

Callers 15

gif_image_write_imageFunction · 0.85
put_swf_rectFunction · 0.85
put_swf_matrixFunction · 0.85
swf_write_headerFunction · 0.85
put_pack_headerFunction · 0.85
put_system_headerFunction · 0.85
output_frame_endFunction · 0.85
MPA_encode_frameFunction · 0.85
ff_copy_bitsFunction · 0.85
encode_superframeFunction · 0.85
encode_picture_losslessFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected