Can the Libsndfile library be used on the iPhone iOS?

…衆ロ難τιáo~ 提交于 2019-11-28 11:20:52

I'm the main maintainer of libsndfile.

libsndfile can be compiled and runs quite happily on Debian/Arm and also Android.

I would be surprised if no one has compiled it for iOS, but there are licensing issues. As you are no doubt aware, libsndfile is released under the LGPL which requires that one of the following conditions be met:

a) The library is used as a dynamically linked library (DLL on windows, shared object on Linux, dynlib on OSX etc).

b) All code that statically links to the LGPL library is released under a LGPL compatible license.

c) The library is used as a static library, but that all object files required to link the library against a new version be made available to all recipients of the application.

As I understand it, iOS does not support dynamically linked libraries (Android does) so option a) is out. That leaves you with options b) and c).

If you decide to go with option b) or c) then you still need to compile the library (and possibly it optional dependencies) for iOS and then link the library against your code.

You can find the sndfile.framework libsndfile wrapper inside this dependencies tar.gz

http://files.sbooth.org/SFBAudioEngine-dependencies.tar.bz2

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!