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

Function bytestream2_init

libavcodec/bytestream.h:137–145  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

135#endif
136
137static av_always_inline void bytestream2_init(GetByteContext *g,
138 const uint8_t *buf,
139 int buf_size)
140{
141 av_assert0(buf_size >= 0);
142 g->buffer = buf;
143 g->buffer_start = buf;
144 g->buffer_end = buf + buf_size;
145}
146
147static av_always_inline void bytestream2_init_writer(PutByteContext *p,
148 uint8_t *buf,

Callers 15

LLVMFuzzerTestOneInputFunction · 0.85
LLVMFuzzerTestOneInputFunction · 0.85
LLVMFuzzerTestOneInputFunction · 0.85
LLVMFuzzerTestOneInputFunction · 0.85
LLVMFuzzerTestOneInputFunction · 0.85
LLVMFuzzerTestOneInputFunction · 0.85
hca_read_headerFunction · 0.85
gif_parse_packetFunction · 0.85
parse_utfFunction · 0.85
moflex_probeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected