error C4996: 'avcodec_free_frame': was declared deprecated



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


如下图:





猜你喜欢

转载自blog.csdn.net/machh/article/details/78541350
今日推荐