ffmpeg使用的问题

‘UINT64_C’ was not declared in this scope

ffmpeg 默认是用C文件来编译的,如果某个CPP文件想引用ffmpeg中的某些函数或者头文件,有可能出现‘UINT64_C’ was not declared in this scope的错误

可以 在cpp文件中加入

extern "C"{

#ifdef __cplusplus
 #define __STDC_CONSTANT_MACROS
 #ifdef _STDINT_H
  #undef _STDINT_H
 #endif
 # include <stdint.h>
#endif

}

来解决, 如果在android下用编译。在Android.mk加入LOCAL_CFLAGS := -D__STDC_CONSTANT_MACROS即可。

如何还是找不到,需自己在libavutil/common.h里定义,如下:

#ifndef INT64_C
#   if defined(__GNUC__)
#       define INT64_C(c)     (c ## LL)
#       define UINT64_C(c)    (c ## ULL)
#   else
#       define INT64_C(c)     (c ## i64)
#       define UINT64_C(c)    (c ## ui64)
#   endif
#endif

 


 

你可能感兴趣的:(ffmpeg使用的问题)