链接器错误与ffmpeg

时间:2013-10-02 19:03:25

标签: qt linker ffmpeg

我正在尝试使用FFMpeg库构建一个非常简单的Qt程序。

目前我只想打开和关闭视频文件。

这是我的项目文件:

QT    += core gui
TARGET = avtest01
TEMPLATE = app
INCLUDEPATH += /usr/local/include
LIBS += -L/usr/local/lib -lavformat
SOURCES += main.cpp

我的代码:

#include <QDebug>

extern "C" {
#include <libavformat/avformat.h>
}

int main(int argc, char *argv[])
{
    if(argc > 1)
    {
        AVFormatContext *format_context;
        qDebug() << argv[1];
        if(avformat_open_input(&format_context, argv[1], NULL, NULL) == 0)
        {
            qDebug() << "open";
            avformat_close_input(&format_context);
        }
        else
            qDebug() << "error opening " << argv[1];
    }    
    return 0;
}

不幸的是,链接器失败了:

Undefined symbols for architecture x86_64:
  "avformat_open_input(AVFormatContext**, char const*, AVInputFormat*, AVDictionary**)", referenced from:
    _main in main.o
  "avformat_close_input(AVFormatContext**)", referenced from:
    _main in main.o

我在MacOS上使用Qt 5.1.0。

1 个答案:

答案 0 :(得分:1)

我将av_register_all();添加到main。

后,您的代码对我有用

我的猜测是你有32位的avformat编译。您可以通过在终端中运行file /usr/local/lib/libavformat.dylib来确认。

输出应如下所示:

/usr/local/lib/libavformat.dylib: Mach-O 64-bit dynamically linked shared library x86_64