HarmonyOS 鸿蒙Next ffmpeg引用报错
HarmonyOS 鸿蒙Next ffmpeg引用报错
ld.lld: error: relocation R_AARCH64_ADD_ABS_LO12_NC cannot be used against symbol 'ff_cos_128'; recompile with -fPIC >> defined in D://xxxx//src/main/cpp/../../../../../../otherlib/libs/android/arm64-v8a/full_ffmpeg/libavcodec.a(fft_float.o) >> referenced by fft_neon.o:(fft128_neon) in archive D://xxxx//vcommediasdk/src/main/cpp/../../../../../../otherlib/libs/android/arm64-v8a/full_ffmpeg/libavcodec.a
ld.lld: error: relocation R_AARCH64_ADR_PREL_PG_HI21 cannot be used against symbol 'ff_cos_256'; recompile with -fPIC >> defined in D://xxxx//src/main/cpp/../../../../../../otherlib/libs/android/arm64-v8a/full_ffmpeg/libavcodec.a(fft_float.o) >> referenced by fft_neon.o:(fft256_neon) in archive D:/xxxx//vcommediasdk/src/main/cpp/../../../../../../otherlib/libs/android/arm64-v8a/full_ffmpeg/libavcodec.a
ld.lld: error: relocation R_AARCH64_ADD_ABS_LO12_NC cannot be used against symbol 'ff_cos_256'; recompile with -fPIC >> defined in D:/xxxx/k/src/main/cpp/../../../../../../otherlib/libs/android/arm64-v8a/full_ffmpeg/libavcodec.a(fft_float.o) >> referenced by fft_neon.o:(fft256_neon) in archive D:/xxxx/vcommediasdk/src/main/cpp/../../../../../../otherlib/libs/android/arm64-v8a/full_ffmpeg/libavcodec.a
你好,ide在引用ffmpeg库时一直报没有添加-fPIC,但是编译ffmpeg时是添加了的,编译脚本以及命令行都添加了-fPIC,但是引用就是报错,请问这个是什么情况?
更多关于HarmonyOS 鸿蒙Next ffmpeg引用报错的实战教程也可以访问 https://www.itying.com/category-93-b0.html
目前FFmpeg可以用两种编译方式:
更多关于HarmonyOS 鸿蒙Next ffmpeg引用报错的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html
针对HarmonyOS(鸿蒙)Next中ffmpeg引用报错的问题,这里提供一些可能的解决方向,专注于鸿蒙系统本身的特点,不涉及Java或C语言的具体代码实现:
-
确认ffmpeg库版本兼容性:首先确保你使用的ffmpeg库版本与你的HarmonyOS SDK版本兼容。不同版本的操作系统可能对库文件的依赖有所不同,需要匹配正确的版本以避免兼容性问题。
-
检查动态库加载路径:在鸿蒙系统中,动态库的加载路径可能与传统Android或Linux系统有所不同。确保ffmpeg的动态库文件(如.so文件)放置在正确的目录下,并在代码中正确指定加载路径。
-
权限问题:鸿蒙系统对应用访问系统资源有严格的权限控制。检查你的应用是否已经声明了访问外部存储或执行本地代码的必要权限。
-
ABI(应用二进制接口)匹配:确保ffmpeg库与你的应用目标ABI(如arm64-v8a, armeabi-v7a等)相匹配,以避免架构不兼容导致的错误。
-
构建配置:检查你的构建脚本或IDE配置,确保ffmpeg相关的编译选项和链接设置正确无误。
如果问题依旧没法解决请联系官网客服,官网地址是:https://www.itying.com/category-93-b0.html