Hi
I am developing a custom media player
where im not directly using Mediaplayer class of android
Instead i divided my mediaplayer functionality into three
1. Read from the media file (Using AndroidAudioInputStream)
2. Decode the file ( usinf Decoder class )
3. Render the decoded data ( Here im facing the problem , i dont find any class provide this.
If im going for Mediaplayer.play() function, it accepts some url (either a file name or a network link) as input . I am looking for a class where i can pass decoded buffer as input ,
which will render it to either display or speaker
Can you suggest me how to achieve this


