I have the following frame format of my ADPCM data
The frame format of the ADPCM is
# byte | Contents
----------------------------------------------------------
0 | Encoder state: LSByte of 1st PCM value in frame
1 | Encoder state: MSByte of 1st PCM value in frame
2 | Encoder state: ADPSM step table index
3 - 258 | ADPCM encoded 16 bit PCM values
How can I decode this ADPCM signal into a audible .wav-format in Windows 7? I have tried getting a solution for python but now I will go for anything.