aboutsummaryrefslogtreecommitdiff
path: root/plugins/spunull/xa.h
blob: 6fb7bfdf2a717cd6aad517d2ca75153d8707603f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//============================================
//=== Audio XA decoding
//=== Kazzuya
//============================================

typedef struct
{
	int	y0, y1;
} ADPCM_Decode_t;

typedef struct
{                                                                   
	int				freq;
	int				nbits;
	int				stereo;
	int				nsamples;
	ADPCM_Decode_t	left, right;
	short			pcm[16384];
} xa_decode_t;