X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=plugins%2Fdfsound%2Fspu.h;h=810ec07dec01183c986079255015d5b1210867ec;hb=403a6290ffad888ab6e3ca05ce4736f052e4147f;hp=23425d9b6b332be2d47a400917952a272d3b9400;hpb=908e426cc1ef2187357ed8fb59edd99b8a8060c9;p=pcsx_rearmed.git diff --git a/plugins/dfsound/spu.h b/plugins/dfsound/spu.h index 23425d9b..810ec07d 100644 --- a/plugins/dfsound/spu.h +++ b/plugins/dfsound/spu.h @@ -18,8 +18,18 @@ #ifndef __P_SPU_H__ #define __P_SPU_H__ +#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ +#define HTOLE16(x) __builtin_bswap16(x) +#define LE16TOH(x) __builtin_bswap16(x) +#else +#define HTOLE16(x) (x) +#define LE16TOH(x) (x) +#endif + void ClearWorkingState(void); -void CALLBACK SPUplayADPCMchannel(xa_decode_t *xap); -int CALLBACK SPUplayCDDAchannel(short *pcm, int bytes); +void CALLBACK SPUplayADPCMchannel(xa_decode_t *xap, unsigned int cycle, int is_start); +int CALLBACK SPUplayCDDAchannel(short *pcm, int bytes, unsigned int cycle, int is_start); +void FeedXA(const xa_decode_t *xap); +void FeedCDDA(unsigned char *pcm, int nBytes); #endif /* __P_SPU_H__ */