'UINT64_C' was not declared in this scope 的解決方法

Leave a Comment
遇到

 'UINT64_C' was not declared in this scope

解決方法:

在 include/libavutil/common.h 中加入

 
 #ifndef INT64_C
 #define INT64_C(c) (c ## LL)
 #endif 

 #ifndef UINT64_C
 #define UINT64_C(c) (c ## ULL)
 #endif 



0 意見:

張貼留言

技術提供:Blogger.