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

Function show_bits

libavcodec/get_bits.h:373–381  ·  view source on GitHub ↗

* Show 1-25 bits. */

Source from the content-addressed store, hash-verified

371 * Show 1-25 bits.
372 */
373static inline unsigned int show_bits(GetBitContext *s, int n)
374{
375 register unsigned int tmp;
376 OPEN_READER_NOSIZE(re, s);
377 av_assert2(n>0 && n<=25);
378 UPDATE_CACHE(re, s);
379 tmp = SHOW_UBITS(re, s, n);
380 return tmp;
381}
382
383static inline void skip_bits(GetBitContext *s, int n)
384{

Callers 15

decode_residualFunction · 0.85
decode_uncompressedFunction · 0.85
decode_group3_1d_lineFunction · 0.85
ff_ccitt_unpackFunction · 0.85
ff_ivi_decode_frameFunction · 0.85
rv10_decode_packetFunction · 0.85
FUNC(filler)Function · 0.85
FUNC(metadata)Function · 0.85
read_low_coeffsFunction · 0.85
read_high_coeffsFunction · 0.85
msmpeg4v34_decode_mbFunction · 0.85

Calls

no outgoing calls

Tested by 1

mainFunction · 0.68