FFmpeg- error: undefined reference to 'av_frame_alloc()'
阿新 • • 發佈:2018-12-25
今天使用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; };