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

Function range_decode_bits

libavcodec/apedec.c:289–294  ·  view source on GitHub ↗

Decode n bits (n <= 16) without modelling */

Source from the content-addressed store, hash-verified

287
288/** Decode n bits (n <= 16) without modelling */
289static inline int range_decode_bits(APEContext * ctx, int n)
290{
291 int sym = range_decode_culshift(ctx, n);
292 range_decode_update(ctx, 1, sym);
293 return sym;
294}
295
296
297#define MODEL_ELEMENTS 64

Callers 1

ape_decode_valueFunction · 0.85

Calls 2

range_decode_culshiftFunction · 0.85
range_decode_updateFunction · 0.85

Tested by

no test coverage detected