访问 StageFright API 以从 Android 中的应用程序层解码 JPEG

发布于 2024-10-24 20:51:33 字数 64 浏览 8 评论 0原文

有没有办法访问 StageFright API 以从 Android 2.3 上的应用程序层解码 JPEG 图像?

Is there a way to access StageFright API's to decode JPEG image from application layer on Android 2.3?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

寻找我们的幸福 2024-10-31 20:51:33

不,Stagefright API 不会在 Android 应用程序框架级别公开。 Android Media Player 类抽象了内部播放器框架,例如 StageFright 和 OpenCore。

如果您有 Android 的源代码,那么您可以通过 JNI 使用 StageFright 中存在的 JPEG 解码器(可能包装为 OMX 组件)。

No, Stagefright APIs are not exposed at Android Application Framework level. Android Media Player class abstracts the internal player frameworks like StageFright and OpenCore.

If you have the source code for Android, then you can use JPEG decoder present in StageFright (probably wrapped as OMX Component) through JNI.

棒棒糖 2024-10-31 20:51:33

不,不可能直接从应用程序层使用 stagefright api。您必须通过 java api。但是,是的,如果您准备好围绕大量代码编写 jni 层 hack,原则上这是可能的

No, it is not possible to use stagefright apis directly from the app layer. You will have to go through the java apis. But yes, if you are ready to write the jni layers hack around a LOT of code, it is possible in principle

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文