blob: 80705125b24198c99a2b8758056537cde7b325f9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _PSX_ADPCM_H
#define _PSX_ADPCM_H
enum
{
FMT_U8, // unsigned 8-bit
FMT_S16, // signed 16-bit
};
int SsAdpcmPack(void *pcm_data, void *adpcm_data, int sample_len,
int sample_fmt, int adpcm_len, int enable_looping);
#endif
|