Go to the documentation of this file.
67 const char* (*item_name)(
void* ctx);
102 void* (*child_next)(
void *obj,
void *prev);
147 #define AV_LOG_QUIET -8
152 #define AV_LOG_PANIC 0
159 #define AV_LOG_FATAL 8
165 #define AV_LOG_ERROR 16
171 #define AV_LOG_WARNING 24
176 #define AV_LOG_INFO 32
181 #define AV_LOG_VERBOSE 40
186 #define AV_LOG_DEBUG 48
188 #define AV_LOG_MAX_OFFSET (AV_LOG_DEBUG - AV_LOG_QUIET)
202 #define AV_LOG_C(x) (x << 8)
236 void av_vlog(
void *avcl,
int level, const
char *fmt, va_list vl);
302 char *
line,
int line_size,
int *print_prefix);
310 # define av_dlog(pctx, ...) av_log(pctx, AV_LOG_DEBUG, __VA_ARGS__)
312 # define av_dlog(pctx, ...) do { if (0) av_log(pctx, AV_LOG_DEBUG, __VA_ARGS__); } while (0)
323 #define AV_LOG_SKIP_REPEATED 1
331 #define AV_LOG_PRINT_LEVEL 2