ffmpeg添加自己的日志

void ffmpeg_log_callback(void* avcl, int level, const char* pFormat, va_list vl)
{
    char buf[256] = {0};
    vsnprintf(buf, 255, pFormat, vl);
    printf("%s", buf);
}


av_log_set_callback(ffmpeg_log_callback);

你可能感兴趣的:(ffmpeg添加自己的日志)