| View previous topic :: View next topic |
| Author |
Message |
Kojima
Joined: 26 Jun 2006 Posts: 275
|
Posted: Sun Jul 02, 2006 4:32 pm Post subject: ADPCM format specs? Examples? |
|
|
I wish to make a wav/ogg to ps2 adpcm windows tool but I'm not sure about the format. (There are so many adpcm varients)
Is it just raw audio data? Is there any tool I can use to see the data visually?(Not a wave form, something like a hex editor, but in english. I hate Hex.) |
|
| Back to top |
|
 |
Kojima
Joined: 26 Jun 2006 Posts: 275
|
Posted: Sun Jul 02, 2006 4:50 pm Post subject: |
|
|
btw I'd appreciate (But understand if you can't be arsed :) ) if someone could fill in the blanks to this psudeo code so I can understand it.
| Code: |
function WriteHeader(stream)
writeint stream,adpcm_header
//etc
end function
function WriteRaw(stream)
for(int i = 0 ; i<Sample_Length ; i++ )
{
WriteInt/Short Stream,SampleRaw[i]
}
end function
stream = Writefile("MySample.adpcm")
writeheader(stream)
writeRaw(stream)
|
Thanks if you can help. I plan to release the tool for everyone to use. |
|
| Back to top |
|
 |
|