Skip to content Skip to sidebar Skip to footer

Signed 16 Bit Pcm Transformations Aren't Working. Why?

For the past 2 days I've been trying to manipulate 16 bit PCM data on Android with little success. I'm currently using WAV recorder to capture audio. In the onPeriodicNotification(

Solution 1:

Your problem is that shorts in java are bigendian, but if you got your data from a WAV file the data is little endian.


Post a Comment for "Signed 16 Bit Pcm Transformations Aren't Working. Why?"