访问 StageFright API 以从 Android 中的应用程序层解码 JPEG
有没有办法访问 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,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.
不,不可能直接从应用程序层使用 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