| 104 | } ARIBCaptionContext; |
| 105 | |
| 106 | static 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 | |
| 119 | static void logcat_callback(aribcc_loglevel_t level, const char* message, void* userdata) |
| 120 | { |
no outgoing calls
no test coverage detected