I'm trying my hands on ffmpeg and am stuck on how I pass the
bytebuffer to the FFmpeg method avcodec_decode_audio3.
In the JNI code I'm able to access the bytebuffer through GetDirectBufferAddress which gives me an object of the type jbyte. How do I pass this to the avcodec_decode_audio3 method of ffmpeg?
The method declaration for is avcodec_decode_audio3 is
avcodec_decode_audio3(AVCodecContext *avctx, int16_t *samples, int
*frame_size_ptr, AVPacket *avpkt)
Has anyone done this before.
Can someone throw some light on this? If someone can give me a snippet of how this is done it would be very useful.