警告:
另一位用户刚刚告知我,在 iOS 上使用 FFMPEG 存在一些法律问题,将链接留在这里http://multinc.com/2009/08/24/compatibility-between-the-iphone-app-store-和-lgpl/
我稍微整理了一下我的问题,当我第一次写它时,我很慌张。现在我可以在稍作休息后更清楚。
编辑:了解到您必须为 ARMv7、ARMv7s 和 iOS6.0 构建
我正在尝试在 XCode 4.5.1 项目中使用 FFMPEG 库。我正在尝试为 ARMv7 构建它。我正在寻找的是确切的过程和一些解释。我知道这不是一个有据可查的问题。但我知道其他人也有和我一样的问题。
我已经能够做到的。
我已经能够构建用于测试的库。
1)我已经能够克隆ffmpeg。对于初学者,这将通过使用 ffmpeg 源创建目录来帮助您入门。(向写这篇文章的人致敬)
git clone git://source.ffmpeg.org/ffmpeg.git ffmpeg
2)我已经能够编写一个没有任何错误的配置文件。我们稍后会回到这部分。这是我附加到 ./configure 的命令
./configure --disable-doc --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/llvm-gcc-4.2/bin/arm-apple-darwin10-llvm-gcc-4.2
--as='gas-preprocessor/gas-preprocessor.pl /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/llvm-gcc-4.2/bin/arm-apple-darwin10-llvm -gcc-4.2'
--sysroot=/applications/xcode.app/contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk
--cpu=cortex-a8 --extra-ldflags='-arch=armv7 -isysroot /applications/xcode.app/contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk' --enable -pic --disable-bzlib --disable-gpl --disable-shared --enable-static --disable-mmx --disable-debug --disable-neon --extra-cflags='-pipe -Os -gdwarf -2 -isysroot /applications/xcode.app/contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.1.sdk -m${thumb_opt:-no-thumb} -mthumb-interwork'
这些是需要注意的一些事项。
- 我必须下载(https://github.com/yuvi/gas-preprocessor)将文件 gas-preprocessor.pl 复制到 /usr/local/bin。设置读写权限 (777)
- 确保我使用的是正确的 GCC 编译器:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/llvm-gcc-4.2/bin/arm-apple-darwin10-llvm-gcc- 4.2
- 确保我使用的是正确的 SDK:/applications/xcode.app/contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk
- --extra-cflags="-arch armv7" 原因:错误:无法识别的命令行选项“-arch”</li>
问题就在这里。
我可以像这样包含图书馆
libavcodec/avcodec.h
但是当我开始编写编码器时。我收到了这个警告,还有无数错误。
忽略文件/Users/Jimmy/Development/source.ffmpeg/Library/libavutil.a,文件是为存档而构建的,它不是被链接的架构(armv7s):/Users/Jimmy/Development/source.ffmpeg/Library/libavutil。一个
这意味着我没有构建正确的二进制文件。
我正在寻找的是一个以前做过的人,带领我们所有人完成为 iOS6.0 和 ARMv7 构建 FFMPEG 的过程以及大部分需要注意的事情。万分感谢。