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

Function show_bits_long

libavcodec/get_bits.h:498–506  ·  view source on GitHub ↗

* Show 0-32 bits. */

Source from the content-addressed store, hash-verified

496 * Show 0-32 bits.
497 */
498static inline unsigned int show_bits_long(GetBitContext *s, int n)
499{
500 if (n <= MIN_CACHE_BITS) {
501 return show_bits(s, n);
502 } else {
503 GetBitContext gb = *s;
504 return get_bits_long(&gb, n);
505 }
506}
507
508
509/**

Callers 15

ls_get_code_regularFunction · 0.85
ls_get_code_runtermFunction · 0.85
parse_frameFunction · 0.85
decode_frameFunction · 0.85
decode_subframeFunction · 0.85
ff_h263_resyncFunction · 0.85
lag_read_prob_headerFunction · 0.85
tta_decode_initFunction · 0.85
get_valueFunction · 0.85
read_access_unitFunction · 0.85
mpeg_decode_sliceFunction · 0.85
check_for_sliceFunction · 0.85

Calls 2

show_bitsFunction · 0.85
get_bits_longFunction · 0.85

Tested by 1

mainFunction · 0.68