无法链接ffmpeg示例源代码

时间:2012-01-29 22:56:40

标签: gcc ffmpeg

我设法从源代码在我的Ubuntu 11.10机器上构建ffmpeg和libx264。

我正在尝试使用示例源文件decoding_encoding.c。这些示例带有一个makefile,所以我只需输入“make all”就可以神奇地编译并链接所有内容。现在,我正在尝试从命令行编译和链接,但我似乎无法将其链接。

这是makefile:

# use pkg-config for getting CFLAGS abd LDFLAGS
FFMPEG_LIBS=libavdevice libavformat libavfilter libavcodec libswscale libavutil
CFLAGS+=$(shell pkg-config  --cflags $(FFMPEG_LIBS))
LDFLAGS+=$(shell pkg-config --libs $(FFMPEG_LIBS))

EXAMPLES=decoding_encoding filtering metadata muxing

OBJS=$(addsuffix .o,$(EXAMPLES))

%: %.o
        $(CC) $< $(LDFLAGS) -o $@

%.o: %.c
        $(CC) $< $(CFLAGS) -c -o $@

.phony: all clean

all: $(OBJS) $(EXAMPLES)

clean:
        rm -rf $(EXAMPLES) $(OBJS)

我可以使用这个来编译源代码:

gcc -Wall -I/usr/local/include -c -o decoding_encoding.o decoding_encoding.c

当我尝试使用此链接时:

gcc -Wall -L/usr/local/lib -lavdevice -lavformat -lavfilter -lavcodec -lswscale -lavutil -o decoding_encoding decoding_encoding.o

此时,我得到了一个巨大的'未定义的引用错误'列表

decoding_encoding.o: In function `audio_encode_example':
decoding_encoding.c:(.text+0x25): undefined reference to `avcodec_find_encoder'
decoding_encoding.c:(.text+0x6a): undefined reference to `avcodec_alloc_context3'
decoding_encoding.c:(.text+0xad): undefined reference to `avcodec_open'
decoding_encoding.c:(.text+0x1ce): undefined reference to `sin'
decoding_encoding.c:(.text+0x238): undefined reference to `avcodec_encode_audio'
decoding_encoding.c:(.text+0x297): undefined reference to `avcodec_close'
decoding_encoding.c:(.text+0x2a3): undefined reference to `av_free'
decoding_encoding.o: In function `audio_decode_example':
decoding_encoding.c:(.text+0x2f7): undefined reference to `av_init_packet'
decoding_encoding.c:(.text+0x30b): undefined reference to `avcodec_find_decoder'
decoding_encoding.c:(.text+0x359): undefined reference to `avcodec_alloc_context3'
decoding_encoding.c:(.text+0x379): undefined reference to `avcodec_open'
..... etc.
collect2: ld returned 1 exit status

我的链接器命令出错了吗?我已经检查了makefile,我相信我正在做的文件正是makefile ....或者是我?

谢谢,

利奥

1 个答案:

答案 0 :(得分:1)

-l选项应该追求任何其他选项。