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

Function hex_dump_debug

libavcodec/libaribcaption.c:106–117  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

104} ARIBCaptionContext;
105
106static void hex_dump_debug(void *ctx, const char *buf, int buf_size)
107{
108 int i;
109
110 for (i = 0; i < buf_size; i++) {
111 ff_dlog(ctx, "%02hhx ", buf[i]);
112 if (i % 16 == 15)
113 ff_dlog(ctx, "\n");
114 }
115 if (i % 16)
116 ff_dlog(ctx, "\n");
117}
118
119static void logcat_callback(aribcc_loglevel_t level, const char* message, void* userdata)
120{

Callers 4

pmt_cbFunction · 0.85
pat_cbFunction · 0.85
sdt_cbFunction · 0.85
aribcaption_decodeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected