MCPcopy Create free account
hub / github.com/HandBrake/HandBrake / bits_skip

Function bits_skip

libhb/stream.c:2622–2633  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2620}
2621
2622static inline int bits_skip(bitbuf_t *bb, int bits)
2623{
2624 if (bits <= 0)
2625 return 0;
2626 while (bits > 32)
2627 {
2628 bits_get(bb, 32);
2629 bits -= 32;
2630 }
2631 bits_get(bb, bits);
2632 return 0;
2633}
2634
2635// extract what useful information we can from the elementary stream
2636// descriptor list at 'dp' and add it to the stream at 'esindx'.

Callers 7

decode_program_mapFunction · 0.85
parse_pes_timestampFunction · 0.85
parse_pes_headerFunction · 0.85
parse_pack_headerFunction · 0.85
decode_ps_mapFunction · 0.85

Calls 1

bits_getFunction · 0.85

Tested by

no test coverage detected