error C4996: 'avcodec_free_frame': was declared deprecated

来源:互联网 发布:nginx 允许列出目录 编辑:程序博客网 时间:2024/06/06 02:36



今天从一个老的工程中,提取了一段使用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即可。


如下图:





阅读全文
0 0
原创粉丝点击