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

Function skip_put_bits

libavcodec/put_bits.h:322–331  ·  view source on GitHub ↗

* Skips the given number of bits. * Must only be used if the actual values in the bitstream do not matter. * If n is 0 the behavior is undefined. */

Source from the content-addressed store, hash-verified

320 * If n is 0 the behavior is undefined.
321 */
322static inline void skip_put_bits(PutBitContext *s, int n)
323{
324#ifdef ALT_BITSTREAM_WRITER
325 s->index += n;
326#else
327 s->bit_left -= n;
328 s->buf_ptr-= 4*(s->bit_left>>5);
329 s->bit_left &= 31;
330#endif
331}
332
333/**
334 * Changes the end of the buffer.

Callers 2

mpeg4_encode_blocksFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected