X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=plugins%2Fdfsound%2Fspu.h;h=334c680996ff9c9c929a4cc564a15250fe87399b;hb=9c279d224ecc6e397bfe1932599be69f02071bdd;hp=0cef6520d6e8652f2201bc2bded5cdde01f1c41e;hpb=cdaef86ca07a1ed7ee6ac8988bf304f9b79dd9e1;p=pcsx_rearmed.git diff --git a/plugins/dfsound/spu.h b/plugins/dfsound/spu.h index 0cef6520..334c6809 100644 --- a/plugins/dfsound/spu.h +++ b/plugins/dfsound/spu.h @@ -18,6 +18,14 @@ #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, unsigned int cycle, int is_start); int CALLBACK SPUplayCDDAchannel(short *pcm, int bytes, unsigned int cycle, int is_start);