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

Function get_sbits

libavcodec/get_bits.h:322–332  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

320}
321
322static inline int get_sbits(GetBitContext *s, int n)
323{
324 register int tmp;
325 OPEN_READER(re, s);
326 av_assert2(n>0 && n<=25);
327 UPDATE_CACHE(re, s);
328 tmp = SHOW_SBITS(re, s, n);
329 LAST_SKIP_BITS(re, s, n);
330 CLOSE_READER(re, s);
331 return tmp;
332}
333
334/**
335 * Read 1-25 bits.

Callers 15

parse_mantissasFunction · 0.85
read_uncoded_coeffFunction · 0.85
decode_subframeFunction · 0.85
decode_channelFunction · 0.85
decorrelateFunction · 0.85
tak_decode_frameFunction · 0.85
seq_unpack_rle_blockFunction · 0.85
tgv_decode_interFunction · 0.85
at1_unpack_dequantFunction · 0.85
add_coefficientsFunction · 0.85
dv_decode_video_segmentFunction · 0.85
decode_frameFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected