1. 程式人生 > >FFmpeg- error: undefined reference to 'av_frame_alloc(

FFmpeg- error: undefined reference to 'av_frame_alloc(

編譯 發送數據 efi dpa spa 發送 tro 使用 col

今天使用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(