linux平台下的动态库,用于QT工具错误时的升级
2023-02-27 21:12:46 928KB libstdc++ libstdc++.so.6.0.10 lib 动态库
1
error while loading shared libraries: libfreetype.so.6: cannot open shared object file: No such file or directory 缺少的文件libfreetype.so.6
2023-02-24 14:22:28 679KB linux ubuntu
1
android ndk 开发的简单实例
2023-02-24 10:51:25 9.4MB android ndk jni
1
openssl-1.1.1q的libcrypto.so.1.1、libssl.so.1.1库文件
2023-02-22 14:25:52 1.31MB Linux CentOS7 OpenSSL
1
编译好的opencv2.4.4库,用arm4.6.1编译
2023-02-20 16:42:30 6.74MB opencv arm so
1
android平台jpeg数据流转换成rgb直接显示的so库 使用方式: byte[] jpegRaw = V4L2Camera.decode(dataBuf, ret); rgb2Buffer(jpegRaw, WIDTH, HEIGHT, rgbBuffer); ByteBuffer jpegBuffer = ByteBuffer.wrap(rgbBuffer); bmp.copyPixelsFromBuffer(jpegBuffer); canvas.drawBitmap(bmp, null, rect, null); // draw camera bitmap native接口如下 package lzt.drv; public class V4L2Camera { static { System.loadLibrary("jpeg"); } public native static byte[] decode(byte[] jpegData, int length); public native static void release(); }
2023-02-10 16:10:53 340KB android jpeg转rgb数据
1
把libstdc++.so.6.0.13这个资源放到/usr/lib文件夹下。删除/usr/lib/libstdc++.so.6。 在输入命令ln -s /usr/lib/libstdc++.so.6.0.13 /usr/lib/libstdc++.so.6。问题解决 可以输入strings /usr/lib/libstdc++.so.6 | grep GLIBC查看GLIBCXX_XXX是否在其中
2023-02-04 00:37:42 952KB GLIBCXX_3.4.11 GLIBCXX_3.4.9 libstdc++.so.6
1
android编译openssl静态库.a 动态库.so 1)make_static.sh 编译静态库 2)make_share.sh 编译动态库
2023-01-31 11:44:22 14.21MB android openssl .a .so
1
这是本篇文章对应的资源文件:[(10条消息)在linux下交叉编译android平台的ffmpeg4.2动态库_huweijian5的专栏-CSDN博客_centos linux ndk交叉编译ffmpeg4.2.3](https://blog.csdn.net/huweijian5/article/details/106109685)
2023-01-12 12:45:39 15.63MB ffmpeg android so
1