spu: fix decode offset
[pcsx_rearmed.git] / plugins / dfsound / out.h
CommitLineData
07c13dfd 1
2struct out_driver {
3 const char *name;
4 int (*init)(void);
5 void (*finish)(void);
6 int (*busy)(void);
7 void (*feed)(void *data, int bytes);
8};
9
10extern struct out_driver *out_current;
11
12void SetupSound(void);