It's possible that the wav file is encoded using Microsoft's ADPCM encoding.
This is what was causing a similar problem for me.
You can find out the encoding for the audio file using the 'file' command:
Code:
file somefile.wav
somefile.wav: RIFF (little-endian) data, WAVE audio, Microsoft ADPCM, stereo 22050 Hz
I fixed the problem by converting the audio file to PCM encoding.
On my system (fedora core 3) I did this using SOX, with this command:
Code:
sox -a originalfile.wav -s -w newfile.wav
Hope this helps!
Rached Blili