ios ffmpeg库 编译记录

如果avcodec_find_encoder返回空(null),那么肯定是ffmpeg configure的时候没有带上--enable-libx264这个选项。另外要标明x264的位置,否则configure报错。除了注明x264的位置,还要先编译x264。这儿要注意,一定要对应arm处理器的类型。如果你现在在编译armv7版本的ffmpeg,那么x264也要编译armv7的版本。x264编译的configure见我的另一篇博文:http://blog.csdn.net/ixfly/article/details/7621258


ffmpeg configure指令。

./configure \
--enable-libx264 \
--enable-gpl \
--disable-ffmpeg \
--disable-ffplay \
--disable-ffserver \
--enable-cross-compile \
--arch=arm \
--target-os=darwin \
--cc=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc \
--as='gas-preprocessor/gas-preprocessor.pl /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc' \
--sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.1.sdk \
--cpu=cortex-a8 \
--extra-cflags='-arch armv7' \
--extra-ldflags='-arch armv7' \
--enable-pic \
--extra-ldflags=-L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.1.sdk/usr/lib/system \
--extra-cflags=-I/Users/liulei/Desktop/svn/LiaoVideoCoder/x264 \
--extra-ldflags=-L/Users/liulei/Desktop/svn/LiaoVideoCoder/x264 \
--enable-small \
--disable-debug \
--disable-doc 

替换静态库时一点要先clean项目,彻底杀死iPhone上的应用。否则不会重新编译。

你可能感兴趣的:(ios,ffmpeg)