Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已将已编译的 FFMPEG 库从测试应用程序复制到我的 xcode 项目中,但尽管将它们添加到我的项目中,但我无法使用它们,
#include <libavcodec/avcodec.h>
甚至所有编译的库(libavcodec.a、libavutil.a、libavformat.a、libavdevice.a> 都在链接库中指定为所需的框架。
当您说您将库复制到您的项目中时,会出现一些问题。
(1)你在哪里复制库,它们是(armv6,armv7.i386)还是胖通用。(2) 您是否在 Xcode (3) 中添加了这些库,这些库的包含在哪里,是否在 Xcode 中正确设置了它们的搜索路径
正确的语法是:
#import <libavcodec/avcodec.h>
代替#include
#include