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

Function get8

libavformat/mpegts.c:682–693  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

680}
681
682static inline int get8(const uint8_t **pp, const uint8_t *p_end)
683{
684 const uint8_t *p;
685 int c;
686
687 p = *pp;
688 if (p >= p_end)
689 return AVERROR_INVALIDDATA;
690 c = *p++;
691 *pp = p;
692 return c;
693}
694
695static inline int get16(const uint8_t **pp, const uint8_t *p_end)
696{

Callers 7

getstr8Function · 0.85
parse_section_headerFunction · 0.85
pmt_cbFunction · 0.85
sdt_cbFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected