当前位置: 代码迷 >> QT开发 >> ffmpeg的output_example.c编译通不过解决方案
  详细解决方案

ffmpeg的output_example.c编译通不过解决方案

热度:2224   发布时间:2013-02-26 00:00:00.0
ffmpeg的output_example.c编译通不过
本人已经安装了最新的ffmpeg,编译ffmpeg的output_example.c的时候出这个错:
 “error: ‘av_set_parameters’ was not declared in this scope.”
问题是:从ffmpeg得知av_set_parameters是在<libavformat/avformat.h>定义的。而且我用的是QT编译的。我用QT直接可以根据av_set_parameters的引用在avformat.h找到这个函数的声明。QT也提示有这个函数。但就是通不过编译。一直报这个错误。请哪位大牛解释下,或提点意见。

------解决方案--------------------------------------------------------
另外包含这个头文件:
#include <libavutil/opt.h>
  相关解决方案