ffmpeg freetype not found 编译问题

备忘:

如果要使用ffmpeg filter的drawtext功能, 在编译时需要加上 --enable-libfreetype , 官网说明:

http://ffmpeg.org/ffmpeg-filters.html#drawtext-1


因为用到了freetype, 则需要先移植:

http://my.oschina.net/nkm/blog/111831

总结一下注意事项:

主要就是路径问题,因为生成的Standalone Toolchain的路径必须在PATH变量中。最好再对CC和CXX两个变量进行设置,否则可能即使编出库也不能成功链接。这样执行各步:

export PATH=xxx/ndk-standalone-14/bin:$PATH
export CC=arm-linux-androideabi-gcc
export CXX=arm-linux-androideabi-g++

./configure --enable-static --disable-shared --host=arm-linux-androideabi --prefix=/freetype --without-zlib
make -j4
make install


注意点(解决error: freetype2 not found):

ffmpeg的configure文件可能需要修改一下,因为下面这行自动赋值了,

pkg_config_default="${cross_prefix}${pkg_config_default}"

导致以下语句判断失败

if ! $pkg_config --version >/dev/null 2>&1; then
    warn "$pkg_config not found, library detection may fail."
    pkg_config=false
fi


我的解决办法是注释掉这行,

#pkg_config_default="${cross_prefix}${pkg_config_default}"


关键点:

  了解linux系统的pkg_config



你可能感兴趣的:(Android)