Lines Matching refs:vl
294 static void format_line(void *avcl, int level, const char *fmt, va_list vl,
322 av_vbprintf(part+3, fmt, vl);
330 void av_log_format_line(void *ptr, int level, const char *fmt, va_list vl,
333 av_log_format_line2(ptr, level, fmt, vl, line, line_size, print_prefix);
336 int av_log_format_line2(void *ptr, int level, const char *fmt, va_list vl,
342 format_line(ptr, level, fmt, vl, part, print_prefix, NULL);
348 void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl)
368 format_line(ptr, level, fmt, vl, part, &print_prefix, type);
411 va_list vl;
412 va_start(vl, fmt);
413 av_vlog(avcl, level, fmt, vl);
414 va_end(vl);
419 va_list vl;
420 va_start(vl, fmt);
421 av_vlog(avcl, *state ? subsequent_level : initial_level, fmt, vl);
422 va_end(vl);
426 void av_vlog(void* avcl, int level, const char *fmt, va_list vl)
434 log_callback(avcl, level, fmt, vl);