Posted by Xerxes Rånby on Mar 14, 2014; 3:45pm URL: https://forum.jogamp.org/playing-audio-from-an-AVI-file-tp4031894p4031901.html
2014-03-14 15:23, TheLittleP [via jogamp] skrev:
> hiya,
>
> how can I tell how the audio buffer is encoded?? I have spent hours digging around trying to unravel this.
>
> The details of the audio on the AVI is LINEAR, 8 bit mono - I was hoping the Source could play the raw chunk buffer data but it cant. there isn't any information on how the audio buffer is encoded, or I don't know how to find out.
>
> It seems WAVLoader and WAVData simply pass the raw buffer of the WAV InputStream to the Source and it plays.
>
> I will keep digging through the source code of GLMediaPlayer to try and find out how it detects the encode and what it does to decode but I thought I might ask the forum in case anyone can explain and save me hours :)
>
> many thanks
> P
GLMediaPlayer is using the FFMPEGMediaPlayer backend on desktop JogAmp systems.
By using libffmpeg/libav the audo format auto-detection is handled by libffmpeg/libav.
We can then tell how the audio buffer is encoded by simply asking the AVCodecContext that belong to the ffmpeg/libav audio decoder.