• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

errorC2054:在“inline”之后应输入“(”

原作者: [db:作者] 来自: [db:来源] 收藏 邀请
#include <stdio.h>
#include <libavformat/avformat.h>
/*
extern "C"
{
#include <libavformat/avformat.h>
}
*/

int main(int argc, char **argv)
{
	AVFormatContext *fmt_ctx = NULL;
	int ret;

	av_register_all();
	if ((ret = avformat_open_input(&fmt_ctx, "bad.mp4", NULL, NULL)))
		return ret;


	avformat_close_input(&fmt_ctx);
	return 0;
}


出现以下错误:

1>g:\coding\ffmpeg\ffmpeg-20160413-git-0efafc5-win32-dev\include\libavutil\error.h(109): error C2054: 在“inline”之后应输入“(”
1>g:\coding\ffmpeg\ffmpeg-20160413-git-0efafc5-win32-dev\include\libavutil\error.h(110): error C2085: “av_make_error_string”: 不在形参表中
1>g:\coding\ffmpeg\ffmpeg-20160413-git-0efafc5-win32-dev\include\libavutil\error.h(110): error C2143: 语法错误 : 缺少“;”(在“{”的前面)
1>g:\coding\ffmpeg\ffmpeg-20160413-git-0efafc5-win32-dev\include\libavutil\mem.h(93): error C2054: 在“inline”之后应输入“(”


wikipedia解释:

C++,C99和GNU C都支持内联函数,然而1989 ANSI C,这个最被广泛使用的C标准却不支持inline。


解决方案是:在该头文件中加入

#if defined(WIN32) && !defined(__cplusplus)
#define inline __inline
#endif


或者直接写CPP程序

#include <stdio.h>
extern "C"
{
#include <libavformat/avformat.h>
}

int main(int argc, char **argv)
{
	AVFormatContext *fmt_ctx = NULL;
	int ret;

	av_register_all();
	if ((ret = avformat_open_input(&fmt_ctx, "bad.mp4", NULL, NULL)))
		return ret;


	avformat_close_input(&fmt_ctx);
	return 0;
}




鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap