Updates:
Status: WontFix
Comment #3 on issue 87 by [email protected]: Clicking during playback
http://code.google.com/p/mediaserver/issues/detail?id=87
Please take a look at :
https://ccrma.stanford.edu/courses/422/projects/WaveFormat/
wav file format has 44 bytes header and then data chunk
this means that data in file should have fileLength-44 bytes
in your case its 17726-44=17682
and 65870-44=65826
for pcm codec frame length is 320 bytes
for a/u law its 160 bytes
therefore for both you dont have an integer number of frames in both files
which can lead to adding trailing junk in last frame of each file
Example of files stored by mms :
-rw-r--r-- 1 root root 44 2012-10-09 16:18
0af09760121c11e2ae28c46e53df2efe.w av
-rw-r--r-- 1 root root 81324 2012-10-22 20:22
630353d01c7511e29aabb66c8cd35abb.w av
-rw-r--r-- 1 root root 44 2012-10-09 16:30
c54a0410121d11e2a1b43fdb989df6fc.w av
Two files are empty , one is 81324 in legth. 81324-44=81280
81280/320=254 complete frames
Therefore its a file problem