这是我的一段代码,我在 VS2010 中编译:
static inline int ff_insert_inpad(AVFilterContext *f, unsigned index, AVFilterPad *p)
{
int ret = ff_insert_pad(index, &f->nb_inputs, offsetof(AVFilterLink, dstpad), &f->input_pads, &f->inputs, p);
#if FF_API_FOO_COUNT
FF_DISABLE_DEPRECATION_WARNINGS
f->input_count = f->nb_inputs;
FF_ENABLE_DEPRECATION_WARNINGS
#endif
return ret; // error here
}
我收到如下错误:
2>c:\users\awki6\desktop\ffmpeg\libavfilter\internal.h(271): 错误 C2143: 语法错误: 缺少';' 在“返回”之前