FFmpeg示例出錯(cuò)如何解決,求高手解答操作系統(tǒng)是ubuntu 32位1. ffmpeg 相關(guān)的庫(kù)安裝在/usr/local/include ,/usr/local/lib中2.示例程序如下#include "libavcodec/avcodec.h"#include "libavformat/avformat.h"int main(int argc,char *argv[]){av_register_all();return 1;}3.直接編譯報(bào)錯(cuò):undefined reference to `av_register_all'4.在網(wǎng)上找到這個(gè)解決方案 : gcc main.c -o main.o -lm -ld -lz -lavcodec -lavformat -lavutil5.我用的時(shí)候又報(bào)了下面的錯(cuò):/usr/bin/ld: cannot find -ldcollect2: ld 返回 1這個(gè)如何解決求解答!!
1 回答

寶慕林4294392
TA貢獻(xiàn)2021條經(jīng)驗(yàn) 獲得超8個(gè)贊
gcc main.c -o main.o -lavformat -lavcodec -lavutil -lm -lz
- 1 回答
- 0 關(guān)注
- 715 瀏覽
添加回答
舉報(bào)
0/150
提交
取消