ffmpeg编译错误

1. libavutil/common.h:175: error: 'UINT64_C' was not declared in this scope

在libavutil/common.h内添加

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

你可能感兴趣的:(ffmpeg编译错误)