我正在使用
xcode中的这个
utils.c文件,其中包含以下内容:
#if FF_API_AVCODEC_OPEN int attribute_align_arg avcodec_open(AVCodecContext *avctx,AVCodec *codec) { return avcodec_open2(avctx,codec,NULL); }
这是造成预期的在顶级声明器之后,在这行的xcode中的错误(在构建期间):int attribute_align_arg avcodec_open(….
为什么?我应该如何解决这个问题.
谢谢.
@H_502_10@