How to use hardware accelerated video decoding on Android?

后端 未结 3 982
温柔的废话
温柔的废话 2020-12-12 12:25

I need hardware-accelerated H.264 decoding for a research project, to test a self-defined protocol.

As I have Search on the web, I have found a few ways to perform h

相关标签:
3条回答
  • 2020-12-12 12:53

    Use ExoPlayer (github).

    Its a Google-sponsored open-source project that replaces the platform's MediaPlayer. Each component in the pipeline is extensible including the sample source (how the H.264 frames are extracted from your custom protocol) to the rendering (to a Surface, SurfaceTexture, etc).

    It includes a nice demo app showing usage.

    0 讨论(0)
  • 2020-12-12 12:55

    To answer the above question, let me introduce few concepts related to Android

    OpenMAX Android uses OpenMAX for codec interface. Hence all native codecs (hardware accelerated or otherwise) provide OpenMAX interface. This interface is used by StageFright(Player framework) for decoding media using codec

    NDK Android allows Java Applications to interact with underlying C/C++ native libraries using NDK. This requires using JNI (Java Native Interface).

    Now coming to your question How to tap native decoder to decode raw video bitstream?

    In Android 4.0 version and below, Android did not provide access to underlying video decoders at Java layer. You would need to write native code to directly interact with OMX decoder. Though this is possible, it is not trivial as it would need knowledge of how OMX works and how to map this OMX to application using NDK.

    In 4.1 (Jelly Bean version), Android seems to provide access to hardware accelerated decoders at application level through JAVA APIs. More details about new APIs at http://developer.android.com/about/versions/android-4.1.html#Multimedia

    0 讨论(0)
  • 2020-12-12 13:04

    You might want to try MediaExtractor and MediaCodec (They are also available in NDK - AMediaExtractor and AMediaCodec - see sample for playing .mp4 here native-codec)

    0 讨论(0)
提交回复
热议问题