您的位置:首页 > 其它

error C4996: 'avcodec_free_frame': was declared deprecated

2017-11-15 16:22 911 查看
今天从一个老的工程中,提取了一段使用ffmpege解码视频的代码,编译工程的时候,出现下面的链接错误

error C4996: 'avcodec_free_frame': was declared deprecated

查看avcodec_free_frame的接口定义,

attribute_deprecated

void avcodec_free_frame(AVFrame **frame);

#endif

这是ffmpeg开发者逐步废弃的接口,  但是,如果我们还不想替换ffmpeg最新的版本, 

老版本也是可以用的,只需在vs中关掉sdl即可。

如下图:

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: