Android 上 libjpeg-turbo 的集成或构建说明
在互联网上可以找到许多提到 Android 版 libjpeg-turbo 的页面(示例)。他们都指向这里的存储库,并说阅读 ANDROID.txt
以获取构建说明。但存储库中没有这样的文本文件。这个存储库是获取 Android 版 libjpeg-turbo 的官方位置吗?如果是这样,构建/集成说明在哪里?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
几个月前,我移植了 libjpeg-turbo 以在 Android 中使用。
您可以在这里找到代码:
http://git.linaro.org/gitweb?p=people/tomgall/libjpeg-turbo/libjpeg-turbo.git;a=shortlog;h=refs/heads/android
Android .txt 在那里等。只需移出 external/jpeg 目录并替换为名称完全相同的 external/jpeg,它将构建并运行良好。
计划很快将其推入 ASOP。 (我知道cyanogenmod目前也在考虑)
I ported libjpeg-turbo for use in android a number of months back.
You can find the code here:
http://git.linaro.org/gitweb?p=people/tomgall/libjpeg-turbo/libjpeg-turbo.git;a=shortlog;h=refs/heads/android
Android.txt is there etc. Just moved out the external/jpeg directory and replace with this named exactly the same external/jpeg, it'll build and run fine.
Plan to push this into ASOP fairly soon. (I know cyanogenmod is also considering it currently)
糟糕的是,该文件位于该存储库的一个分支中。
还找到了此信息:
https://wiki.linaro.org/BenjaminGaignard/libjpeg-turboAndSkia
My bad, the file's in a branch in that repository.
Also found this info:
https://wiki.linaro.org/BenjaminGaignard/libjpeg-turboAndSkia
使用 Makefile.am 文件查看需要编译哪些文件并将其写入您自己的 Android.mk makefile 中。
Use Makefile.am file to see what files you need to compile and write that in your own Android.mk makefile.
刚刚找到以下问题和答案,它们似乎非常详细地回答了这个问题。实际上现在就尝试一下,因为我的用例是将其嵌入到应用程序中,而不是重新编译 Android 以使用它而不是内置的 libjpeg。
Just found the following question and answers which seem pretty detailed on answering this. Actually trying it out right now as my use case is to embed this into an application and not recompile Android to use this instead of the built-in
libjpeg
.