我已经定义了以下头文件(在 C 中),省略了函数实现,因为不需要 thise:
#ifndef FFMPEG_MEDIAMETADATARETRIEVER_H_
#define FFMPEG_MEDIAMETADATARETRIEVER_H_
#include <libavcodec/avcodec.h>
#include <libavformat/avformat.h>
#include <libavutil/dict.h>
int setDataSource(AVFormatContext** pFormatCtx, const char* path);
#endif /*FFMPEG_MEDIAMETADATARETRIEVER_H_*/
在 C++ 中,我定义了我的第二个头文件:
#ifndef MEDIAMETADATARETRIEVER_H
#define MEDIAMETADATARETRIEVER_H
using namespace std;
extern "C" {
#include "ffmpeg_mediametadataretriever.h"
}
class MediaMetadataRetriever
{
public:
MediaMetadataRetriever();
~MediaMetadataRetriever();
int setDataSource(const char* dataSourceUrl);
};
#endif // MEDIAMETADATARETRIEVER_H
在 mediametadataretriever.cpp 中,我定义了以下函数:
int MediaMetadataRetriever::setDataSource(
const char *srcUrl)
{
// should call C function
AVFormatContext* pFormatCtx;
return setDataSource(&pFormatCtx, srcUrl);
}
当我尝试在 Eclipse 中编译这个(C++)项目时,我得到一个“没有匹配的函数调用...”错误,与以下内容相关:
return setDataSource(&pFormatCtx, srcUrl);
如果我注释掉调用,代码编译得很好:
int MediaMetadataRetriever::setDataSource(
const char *srcUrl)
{
return 0;
}
这似乎是一个链接问题,有谁知道我做错了什么?