linux 编译ffmpeg 出错:error: 'UINT64_C' was not declared in this scope

涉及到标准c和c99的问题,在出问题的文件中加上下面三句话就好了

我的是:common.h头文件出错

/usr/local/include/libavutil/common.h

添加如下,即可解决


#ifndef   UINT64_C

#define   UINT64_C(value)__CONCAT(value,ULL)

#endif


你可能感兴趣的:(linux 编译ffmpeg 出错:error: 'UINT64_C' was not declared in this scope)