FFmpeg- error: undefined reference to 'av_frame_alloc(

Posted yongdaimi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了FFmpeg- error: undefined reference to 'av_frame_alloc(相关的知识,希望对你有一定的参考价值。

今天使用CMake编译FFmpeg的时候,死活编不过,提示什么“undefined reference to ‘av_frame_alloc()”

后来仔细查找,发现是头文件包含错误

错误的代码:

#include <libavutil/frame.h>
#include "IDecoder.h"

struct AVCodecContext;
class FFDecoder : public IDecoder{

public:
    virtual bool Open(XParameters params);
    /** 发送数据到解码队列 */
    virtual bool SendPacket(XData pkt);
    /** 从解码队列中获取一帧数据 */
    virtual XData RecvFrame();

protected:
    AVCodecContext *avctx = 0;
    AVFrame        *frame = 0;

};

解决办法

因为使用的是C++,所以在包含头文件的时候要特别注意,如果要包含的是C语言的头文件,必须用extern "C" 来包裹。比如:

extern "C" {
#include <libavcodec/avcodec.h>
}

我的问题就是直接在头文件中引入了FFmpeg的头文件 #include <libavutil/frame.h> ,但没有用extern "C" 包裹才出错的。正确的做法是使用extern "C" 包裹该头文件。

或者是直接在顶部声明用到的结构体即可。如:

#include "IDecoder.h"

struct AVCodecContext;
struct AVFrame;
class FFDecoder : public IDecoder{

public:
    virtual bool Open(XParameters params);
    /** 发送数据到解码队列 */
    virtual bool SendPacket(XData pkt);
    /** 从解码队列中获取一帧数据 */
    virtual XData RecvFrame();

protected:
    AVCodecContext *avctx = 0;
    AVFrame        *frame = 0;

};

 

以上是关于FFmpeg- error: undefined reference to 'av_frame_alloc(的主要内容,如果未能解决你的问题,请参考以下文章

ubuntu下调试ffmpeg程序出现undefined reference to pthread_once ,undefined reference to uncompress错误

使用FFmpeg在Android中编译出现 undefined reference to ‘avcodec_configuration()’ 问题

关于 海思平台sample的demo中添加ffmpeg静态库(.a)报错误undefined reference toavpriv_pix_fmt_hps_avi等错误 的解决方法

discord.errors.ClientException:找不到 C:/ffmpeg/bin/ffmpeg

React error #130 args[]=undefined 报错

使用 Android Q ffmpeg 拒绝权限": error=13, Permission denied