好,廢話少說,開始吧。
首先要編譯libx264庫,這樣ffmpeg才能支持h264標准碼流的處理。
我下載的是最新的libx264版本:x264-snapshot-20111216-2245。將其解壓到CentOS5.4的虛擬機系統中。
使用如下語句編譯:
./configure --enable-static --host=arm-linux --disable-asm --prefix=/usr/local/src/cross-ffmpeg
make CC=arm-hismall-linux-gcc AR=arm-hismall-linux-ar LD=arm-hismall-linux-gcc RANLIB=arm-hismall-linux-ranlib STRIP=arm-hismall-linux-strip
(arm-hismall-linux-xxx是我使用的嵌入式系統的編譯環境命令,大家根據自己的環境修改)
這時會顯示編譯錯誤,需要手動comm/cpu.c文件,將其381行開始的位置修改如下:
#elif SYS_LINUX
// cpu_set_t p_aff;
// memset( &p_aff, 0, sizeof(p_aff) );
// if( sched_getaffinity( 0, sizeof(p_aff), &p_aff ) )
return 1;
#if HAVE_CPU_COUNT
//return CPU_COUNT(&p_aff);
return 1;
#else
int np = 1;
//for( unsigned int bit = 0; bit < 8 * sizeof(p_aff); bit++ )
// np += (((uint8_t *)&p_aff)[bit / 8] >> (bit % 8)) & 1;
return np;
#endif
再次運行make命令後,編譯通過,但鏈接時出錯。編譯libx264.a庫時,顯示的命令為:
arm-hismall-linux-arlibx264.a ....
make文件將鏈接命令和庫名字間沒有空格,導致系統無法識別此命令。我嘗試修改Makefile文件也不行,干脆手動執行下面的命令:
arm-hismall-linux-ar rc libx264.a common/mc.o common/predict.o common/pixel.o common/macroblock.o common/frame.o common/dct.o common/cpu.o common/cabac.o common/common.o common/osdep.o common/rectangle.o common/set.o common/quant.o common/deblock.o common/vlc.o common/mvpred.o common/bitstream.o encoder/analyse.o encoder/me.o encoder/ratecontrol.o encoder/set.o encoder/macroblock.o encoder/cabac.o encoder/cavlc.o encoder/encoder.o encoder/lookahead.o common/threadpool.o
arm-hismall-linux-ranlib libx264.a (用於產生x264-config.h文件)
最後執行:
make install-lib-static
這樣將libx264.a拷貝到/usr/local/src/cross-ffmpeg/lib目錄下,x264.h 和x264-config.h拷貝到/usr/local/src/cross-ffmpeg/include目錄下。
下面就開始ffmpeg的交叉編譯:
我使用的最新的ffmpeg0.9版本,將其解壓到/usr/local/src/ffmpeg0.9目錄下
運行: