在 libavutil/common.h 下

添加如下,即可解决

 

#ifdef __cplusplus
#define __STDC_CONSTANT_MACROS
#ifdef _STDINT_H
#undef _STDINT_H
#endif
extern "C" {
#include <stdint.h>
}
#endif

 

#ifndef   UINT64_C

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

#endif

相关文章:

  • 2022-01-18
  • 2021-06-10
  • 2022-12-23
  • 2021-07-22
  • 2021-04-23
  • 2022-01-16
  • 2022-01-10
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-08
  • 2022-12-23
  • 2022-12-23
  • 2021-04-24
相关资源
相似解决方案