未定义的引用错误FFMPEG + QT + Ubuntu 12.04.2 LTS

时间:2013-07-19 09:12:11

标签: qt ubuntu linker ffmpeg

我有2台机器使用Ubuntu 12.04.2 LTS(64 mb),另一台是雪豹OS。 在我的Mac中我使用ffmpeg没有任何麻烦,但后来我尝试在ubuntu中使用ffmpeg并出现6700(!)错误:

error: undefined reference to `av_freep'
error: undefined reference to `av_strstart'
error: undefined reference to `av_freep'
...

我使用QT 4.8.5和g ++ x86 64b 我在http://ffmpeg.org/trac/ffmpeg/wiki/UbuntuCompilationGuide之后安装了ffmpeg而没有错误或警告。

我的测试代码是:

·H

QT += core gui 

INCLUDEPATH += \
    /usr/local/Include

LIBS += /usr/local/lib/libavcodec.a
LIBS += /usr/local/lib/libavutil.a
LIBS += /usr/local/lib/libavformat.a
LIBS += /usr/local/lib/libswscale.a


SOURCES += main.cpp

的.cpp:

extern "C"
{
#ifndef __STDC_CONSTANT_MACROS
#  define __STDC_CONSTANT_MACROS
#endif

#include "libavcodec/avcodec.h"
#include "libavformat/avformat.h"
}

#include <stdio.h>

int main()
{
    AVFormatContext *pFormatCtx;
    av_register_all();

    const char* fil = "/home/cits/Desktop/movFile.mov";

    if(avformat_open_input(&pFormatCtx, fil, NULL, NULL)!=0)
    {
        return -1; // Couldn't open file
    }

    if(avformat_find_stream_info(pFormatCtx, NULL)<0)
    {
        return -1; // Couldn't find stream information
    }

    return 0;
}

任何想法??

提前致谢。

1 个答案:

答案 0 :(得分:0)

你的.pro文件应该是这样的:

QT += core gui 

INCLUDEPATH += \
    /usr/local/Include

LIBS += -L/usr/local/lib/ -llibavcodec -llibavutil -llibavformat -llibswscale


SOURCES += main.cpp