Lines Matching refs:avcl
294 static void format_line(void *avcl, int level, const char *fmt, va_list vl,
297 AVClass* avc = avcl ? *(AVClass **) avcl : NULL;
306 AVClass** parent = *(AVClass ***) (((uint8_t *) avcl) +
315 avc->item_name(avcl), avcl);
316 if(type) type[1] = get_category(avcl);
409 void av_log(void* avcl, int level, const char *fmt, ...)
413 av_vlog(avcl, level, fmt, vl);
417 void av_log_once(void* avcl, int initial_level, int subsequent_level, int *state, const char *fmt, ...)
421 av_vlog(avcl, *state ? subsequent_level : initial_level, fmt, vl);
426 void av_vlog(void* avcl, int level, const char *fmt, va_list vl)
428 AVClass* avc = avcl ? *(AVClass **) avcl : NULL;
432 level += *(int *) (((uint8_t *) avcl) + avc->log_level_offset_offset);
434 log_callback(avcl, level, fmt, vl);