androidjpegdecodestagefrightopencore

Access StageFright API to decode JPEG from Application layer in Android


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


Solution

  • 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.