faac 1.28的交叉编译与问题解决

一、faac简介    
faac是一个成熟的AAC音频编码库,具有编码速度快,便携性好,技术广泛等特点,其官网下载地址:http://www.audiocoding.com/downloads.html,最后一个更新版本是1.28,更新于2009年,距今已经8年了,可见其编码库早已稳定,没有再推出新版本。

二、编译错误
./configure CC=aarch64-linux-gnu-gcc --host=arm-linux --prefix=/home/usri/faac-1.28/build_result

make 
1)提示mpeg4ip.h 126行strcasestr 与系统/usr/include/string.h中存在冲突

解决办法,把mpeg4ip.h中的冲突行注销掉

2)File in wrong format

这个问题需要在 ./configure 的时候加上 --with-mp4v2=no

MPEG4IP README中有解释

http://www.courseschevaux.fr/medias/videos/mpeg4ip-1.5.0.1/doc/MAINREADME.html

faac versions after 1.24 will require the --with-mp4v2=no argument to the configure statement.

目前版本是1.28,所以需要加上  --with-mp4v2=no选项,所以configure时应这样写:

./configure CC=aarch64-linux-gnu-gcc --host=arm-linux --prefix=/home/usri/faac-1.28/build_result  --with-mp4v2=no

然后再make,就没有错误了。


你可能感兴趣的:(faac,交叉编译)