Example #1
0
void av_vlog(void* avcl, int level, const char *fmt, va_list vl)
{
#if USE_DPRINTF
	allowDPRINTF=1;
	DPRINTFA(fmt, vl);
#else
    av_log_callback(avcl, level, fmt, vl);
#endif
}
Example #2
0
void av_vlog(void* avcl, int level, const char *fmt, va_list vl)
{
    if(av_log_callback)
        av_log_callback(avcl, level, fmt, vl);
}