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

Function bprint_bytes

fftools/textformat/avtextformat.c:95–100  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

93};
94
95static void bprint_bytes(AVBPrint *bp, const uint8_t *ubuf, size_t ubuf_size)
96{
97 av_bprintf(bp, "0X");
98 for (unsigned i = 0; i < ubuf_size; i++)
99 av_bprintf(bp, "%02X", ubuf[i]);
100}
101
102int avtext_context_close(AVTextFormatContext **ptctx)
103{

Callers 2

avtext_context_openFunction · 0.85
validate_stringFunction · 0.85

Calls 1

av_bprintfFunction · 0.85

Tested by

no test coverage detected