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

Function align_put_bits

libavcodec/put_bits.h:445–448  ·  view source on GitHub ↗

* Pad the bitstream with zeros up to the next byte boundary. */

Source from the content-addressed store, hash-verified

443 * Pad the bitstream with zeros up to the next byte boundary.
444 */
445static inline void align_put_bits(PutBitContext *s)
446{
447 put_bits(s, s->bit_left & 7, 0);
448}
449
450#undef AV_WBBUF
451#undef AV_WLBUF

Callers 13

xsub_encode_rleFunction · 0.85
ff_dovi_rpu_generateFunction · 0.85
put_pceFunction · 0.85
put_bitstream_infoFunction · 0.85
ff_copy_pce_dataFunction · 0.85
encode_blockFunction · 0.85
encode_frameFunction · 0.85
put_headerFunction · 0.85
encode_parse_infoFunction · 0.85
encode_seq_headerFunction · 0.85
encode_picture_headerFunction · 0.85
encode_wavelet_transformFunction · 0.85

Calls 1

put_bitsFunction · 0.70

Tested by

no test coverage detected