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

Function align_get_bits

libavcodec/get_bits.h:560–566  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

558}
559
560static inline const uint8_t *align_get_bits(GetBitContext *s)
561{
562 int n = -get_bits_count(s) & 7;
563 if (n)
564 skip_bits(s, n);
565 return s->buffer + (s->index >> 3);
566}
567
568/**
569 * If the vlc code is invalid and max_depth=1, then no bits will be removed.

Callers 15

vvcc_parse_ptlFunction · 0.85
vvcc_parse_vpsFunction · 0.85
hvcc_parse_vpsFunction · 0.85
ff_h264_decode_mb_cavlcFunction · 0.85
ff_ccitt_unpackFunction · 0.85
tak_decode_frameFunction · 0.85
mss2_decode_frameFunction · 0.85
osq_decode_blockFunction · 0.85
read_slice_sizesFunction · 0.85
decode_pic_hdrFunction · 0.85
decode_band_hdrFunction · 0.85
decode_mb_infoFunction · 0.85

Calls 2

get_bits_countFunction · 0.85
skip_bitsFunction · 0.85

Tested by

no test coverage detected