我最近在ubuntu上进行带有x264的ffmpeg编译。
x264的编译如下:
./configure --prefix=/usr/local/x264 --enable-shared --enable-static --disable-asm
make
make install
ffmpeg的编译如下:
./configure --prefix=/monchickey/ffmpeg/ --enable-shared --enable-yasm --enable-libx264 --enable-gpl --enable -pthreads
--extra-cflags=-I/usr/local/x264/include --extra-ldflags=-L/usr/local/x264/lib
执行make的时候 报错
libavcodec/libx264.c: In function 'x264_frame' :
libavcodec/libx264.c:282:9 error: 'x264_bit_depth' undeclared(first use in this function)
if(x264_bit_depth>8)
libavcodec/libx264.c: In function 'x264_init_static':
libavcodec/libx264.c:892.9 error: 'x264_bit_depth' undeclared(first use in this function)
if(x264_bit_depth== 8)
我git 的,应该是最新版本吧,然后安装报如下错误:
/usr/bin/ld: /usr/local/lib/libmp3lame.a(lame.o): relocation R_X86_64_32 against `.rodata' can not be used when making a shared object; recompile with -fPIC
/usr/local/lib/libmp3lame.a: could not read symbols: Bad value
collect2: error: ld returned 1 exit status
make: *** [libavcodec/libavcodec.so.58] Error 1
求问各位大神怎么解决?