在 libavutil/common.h 下
添加如下,即可解决
#ifdef __cplusplus#define __STDC_CONSTANT_MACROS#ifdef _STDINT_H#undef _STDINT_H#endifextern "C" {#include <stdint.h>}#endif
#ifndef UINT64_C
#define UINT64_C(value) __CONCAT(value,ULL)
#endif