我正在使用 xcode 中的这个utils.c文件,它具有以下内容:
#if FF_API_AVCODEC_OPEN
int attribute_align_arg avcodec_open(AVCodecContext *avctx, AVCodec *codec)
{
return avcodec_open2(avctx, codec, NULL);
}
它Expected ; after top level declarator
在此行的 xcode 中导致错误(在构建期间):int attribute_align_arg avcodec_open(....
为什么?以及我应该怎么做才能解决这个问题。
谢谢你。