X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=libpcsxcore%2Fdecode_xa.c;h=fb6fd1356b3725af8f828891b0c7d98ec65d7923;hb=HEAD;hp=ee1dd6f3e717a69a6b86ec0d5a95d03955df50cb;hpb=ef79bbde537d6b9c745a7d86cb9df1d04c35590d;p=pcsx_rearmed.git diff --git a/libpcsxcore/decode_xa.c b/libpcsxcore/decode_xa.c index ee1dd6f3..fb6fd135 100644 --- a/libpcsxcore/decode_xa.c +++ b/libpcsxcore/decode_xa.c @@ -110,10 +110,10 @@ static __inline void ADPCM_DecodeBlock16( ADPCM_Decode_t *decp, u8 filter_range, x2 -= (IK0(filterid) * fy0 + (IK1(filterid) * fy1)) >> SHC; fy1 = fy0; fy0 = x2; x3 -= (IK0(filterid) * fy0 + (IK1(filterid) * fy1)) >> SHC; fy1 = fy0; fy0 = x3; - XACLAMP( x0, -32768<> SH; destp += inc; - XACLAMP( x1, -32768<> SH; destp += inc; - XACLAMP( x2, -32768<> SH; destp += inc; - XACLAMP( x3, -32768<> SH; destp += inc; + XACLAMP( x0, (int)(-32768u<> SH; destp += inc; + XACLAMP( x1, (int)(-32768u<> SH; destp += inc; + XACLAMP( x2, (int)(-32768u<> SH; destp += inc; + XACLAMP( x3, (int)(-32768u<> SH; destp += inc; } decp->y0 = fy0; decp->y1 = fy1; @@ -122,7 +122,7 @@ static __inline void ADPCM_DecodeBlock16( ADPCM_Decode_t *decp, u8 filter_range, static int headtable[4] = {0,2,8,10}; //=========================================== -static void xa_decode_data( xa_decode_t *xdp, unsigned char *srcp ) { +static void xa_decode_data( xa_decode_t *xdp, const unsigned char *srcp ) { const u8 *sound_groupsp; const u8 *sound_datap, *sound_datap2; int i, j, k, nbits; @@ -297,8 +297,8 @@ u8 coding2; //============================================ static int parse_xa_audio_sector( xa_decode_t *xdp, - xa_subheader_t *subheadp, - unsigned char *sectorp, + const xa_subheader_t *subheadp, + const unsigned char *sectorp, int is_first_sector ) { if ( is_first_sector ) { switch ( AUDIO_CODING_GET_FREQ(subheadp->coding) ) { @@ -340,8 +340,7 @@ static int parse_xa_audio_sector( xa_decode_t *xdp, //=== - 0 for any other successive sector //=== return -1 if error //================================================================ -s32 xa_decode_sector( xa_decode_t *xdp, - unsigned char *sectorp, int is_first_sector ) { +s32 xa_decode_sector( xa_decode_t *xdp, const unsigned char *sectorp, int is_first_sector ) { if (parse_xa_audio_sector(xdp, (xa_subheader_t *)sectorp, sectorp + sizeof(xa_subheader_t), is_first_sector)) return -1;