X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=plugins%2Fdfsound%2Fxa.c;h=380d1388cee04ef9e7e7b3b62511d25922fbe6e0;hp=1c5425eaf78112698dae1313946d136b7513af67;hb=refs%2Fremotes%2Fgithub%2Fmaster;hpb=f05d6ca255c80170e4e5fc61cc48d87e013b8807 diff --git a/plugins/dfsound/xa.c b/plugins/dfsound/xa.c index 1c5425ea..380d1388 100644 --- a/plugins/dfsound/xa.c +++ b/plugins/dfsound/xa.c @@ -16,6 +16,7 @@ ***************************************************************************/ #include "stdafx.h" +#include "spu.h" #define _IN_XA #include @@ -26,24 +27,6 @@ // XA GLOBALS //////////////////////////////////////////////////////////////////////// -xa_decode_t * xapGlobal=0; - -uint32_t * XAFeed = NULL; -uint32_t * XAPlay = NULL; -uint32_t * XAStart = NULL; -uint32_t * XAEnd = NULL; - -uint32_t XARepeat = 0; -uint32_t XALastVal = 0; - -uint32_t * CDDAFeed = NULL; -uint32_t * CDDAPlay = NULL; -uint32_t * CDDAStart = NULL; -uint32_t * CDDAEnd = NULL; - -int iLeftXAVol = 32767; -int iRightXAVol = 32767; - static int gauss_ptr = 0; static int gauss_window[8] = {0, 0, 0, 0, 0, 0, 0, 0}; @@ -56,73 +39,161 @@ static int gauss_window[8] = {0, 0, 0, 0, 0, 0, 0, 0}; // MIX XA & CDDA //////////////////////////////////////////////////////////////////////// -INLINE void MixXA(void) +INLINE void SkipCD(int ns_to, int decode_pos) { + int cursor = decode_pos; int ns; - short l, r; - uint32_t v; + + if(spu.XAPlay != spu.XAFeed) + { + for(ns = 0; ns < ns_to*2; ns += 2) + { + if(spu.XAPlay != spu.XAFeed) spu.XAPlay++; + if(spu.XAPlay == spu.XAEnd) spu.XAPlay=spu.XAStart; + + spu.spuMem[cursor] = 0; + spu.spuMem[cursor + 0x400/2] = 0; + cursor = (cursor + 1) & 0x1ff; + } + } + else if(spu.CDDAPlay != spu.CDDAFeed) + { + for(ns = 0; ns < ns_to*2; ns += 2) + { + if(spu.CDDAPlay != spu.CDDAFeed) spu.CDDAPlay++; + if(spu.CDDAPlay == spu.CDDAEnd) spu.CDDAPlay=spu.CDDAStart; + + spu.spuMem[cursor] = 0; + spu.spuMem[cursor + 0x400/2] = 0; + cursor = (cursor + 1) & 0x1ff; + } + } + spu.XALastVal = 0; +} + +INLINE void MixCD(int *SSumLR, int *RVB, int ns_to, int decode_pos) +{ + int vll = spu.iLeftXAVol * spu.cdv.ll >> 7; + int vrl = spu.iLeftXAVol * spu.cdv.rl >> 7; + int vlr = spu.iRightXAVol * spu.cdv.lr >> 7; + int vrr = spu.iRightXAVol * spu.cdv.rr >> 7; int cursor = decode_pos; + int l1, r1, l, r; + int ns; + uint32_t v = spu.XALastVal; - if(XAPlay != XAFeed || XARepeat > 0) + // note: spu volume doesn't affect cd capture + if ((spu.cdv.ll | spu.cdv.lr | spu.cdv.rl | spu.cdv.rr) == 0) { - if(XAPlay == XAFeed) - XARepeat--; + SkipCD(ns_to, decode_pos); + return; + } - v = XALastVal; - for(ns=0;ns 0) + { + if(spu.XAPlay == spu.XAFeed) + spu.XARepeat--; + + for(ns = 0; ns < ns_to*2; ns += 2) { - if(XAPlay != XAFeed) v=*XAPlay++; - if(XAPlay == XAEnd) XAPlay=XAStart; - - l = ((int)(short)v * iLeftXAVol) >> 15; - r = ((int)(short)(v >> 16) * iLeftXAVol) >> 15; - SSumLR[ns++] += l; - SSumLR[ns++] += r; - spuMem[cursor] = l; - spuMem[cursor + 0x400/2] = r; + if(spu.XAPlay != spu.XAFeed) v=*spu.XAPlay++; + if(spu.XAPlay == spu.XAEnd) spu.XAPlay=spu.XAStart; + + l1 = (short)v, r1 = (short)(v >> 16); + l = (l1 * vll + r1 * vrl) >> 15; + r = (r1 * vrr + l1 * vlr) >> 15; + ssat32_to_16(l); + ssat32_to_16(r); + if (spu.spuCtrl & CTRL_CD) + { + SSumLR[ns+0] += l; + SSumLR[ns+1] += r; + } + if (unlikely(spu.spuCtrl & CTRL_CDREVERB)) + { + RVB[ns+0] += l; + RVB[ns+1] += r; + } + + spu.spuMem[cursor] = HTOLE16(v); + spu.spuMem[cursor + 0x400/2] = HTOLE16(v >> 16); cursor = (cursor + 1) & 0x1ff; } - XALastVal = v; + spu.XALastVal = v; } + // occasionally CDDAFeed underflows by a few samples due to poor timing, + // hence this 'ns_to < 8' + else if(spu.CDDAPlay != spu.CDDAFeed || ns_to < 8) + { + for(ns = 0; ns < ns_to*2; ns += 2) + { + if(spu.CDDAPlay != spu.CDDAFeed) v=*spu.CDDAPlay++; + if(spu.CDDAPlay == spu.CDDAEnd) spu.CDDAPlay=spu.CDDAStart; + + l1 = (short)v, r1 = (short)(v >> 16); + l = (l1 * vll + r1 * vrl) >> 15; + r = (r1 * vrr + l1 * vlr) >> 15; + ssat32_to_16(l); + ssat32_to_16(r); + if (spu.spuCtrl & CTRL_CD) + { + SSumLR[ns+0] += l; + SSumLR[ns+1] += r; + } + if (unlikely(spu.spuCtrl & CTRL_CDREVERB)) + { + RVB[ns+0] += l; + RVB[ns+1] += r; + } - for(ns=0;ns> 15; - r = ((int)(short)(v >> 16) * iLeftXAVol) >> 15; - SSumLR[ns++] += l; - SSumLR[ns++] += r; - spuMem[cursor] = l; - spuMem[cursor + 0x400/2] = r; - cursor = (cursor + 1) & 0x1ff; - } + spu.spuMem[cursor] = HTOLE16(v); + spu.spuMem[cursor + 0x400/2] = HTOLE16(v >> 16); + cursor = (cursor + 1) & 0x1ff; + } + spu.XALastVal = v; + } + else if (spu.cdClearSamples > 0) + { + for(ns = 0; ns < ns_to; ns++) + { + spu.spuMem[cursor] = spu.spuMem[cursor + 0x400/2] = 0; + cursor = (cursor + 1) & 0x1ff; + } + spu.cdClearSamples -= ns_to; + spu.XALastVal = 0; + } } //////////////////////////////////////////////////////////////////////// // small linux time helper... only used for watchdog //////////////////////////////////////////////////////////////////////// +#if 0 static unsigned long timeGetTime_spu() { +#if defined(NO_OS) + return 0; +#elif defined(_WIN32) + return GetTickCount(); +#else struct timeval tv; gettimeofday(&tv, 0); // well, maybe there are better ways return tv.tv_sec * 1000 + tv.tv_usec/1000; // to do that, but at least it works +#endif } +#endif //////////////////////////////////////////////////////////////////////// // FEED XA //////////////////////////////////////////////////////////////////////// -INLINE void FeedXA(xa_decode_t *xap) +void FeedXA(const xa_decode_t *xap) { int sinc,spos,i,iSize,iPlace,vl,vr; - if(!bSPUIsOpen) return; + if(!spu.bSPUIsOpen) return; - xapGlobal = xap; // store info for save states - XARepeat = 100; // set up repeat + spu.XARepeat = 3; // set up repeat #if 0//def XA_HACK iSize=((45500*xap->nsamples)/xap->freq); // get size @@ -131,13 +202,14 @@ INLINE void FeedXA(xa_decode_t *xap) #endif if(!iSize) return; // none? bye - if(XAFeedpcm; uint32_t l=0; - if(iXAPitch) +#if 0 + if(spu_config.iXAPitch) { int32_t l1,l2;short s; for(i=0;i=0x10000L) { @@ -199,16 +273,16 @@ INLINE void FeedXA(xa_decode_t *xap) spos -= 0x10000L; } vl = (spos >> 6) & ~3; - vr=(gauss[vl]*gvall0)&~2047; - vr+=(gauss[vl+1]*gvall(1))&~2047; - vr+=(gauss[vl+2]*gvall(2))&~2047; - vr+=(gauss[vl+3]*gvall(3))&~2047; - l= (vr >> 11) & 0xffff; - vr=(gauss[vl]*gvalr0)&~2047; - vr+=(gauss[vl+1]*gvalr(1))&~2047; - vr+=(gauss[vl+2]*gvalr(2))&~2047; - vr+=(gauss[vl+3]*gvalr(3))&~2047; - l |= vr << 5; + vr=(gauss[vl]*gvall0) >> 15; + vr+=(gauss[vl+1]*gvall(1)) >> 15; + vr+=(gauss[vl+2]*gvall(2)) >> 15; + vr+=(gauss[vl+3]*gvall(3)) >> 15; + l= vr & 0xffff; + vr=(gauss[vl]*gvalr0) >> 15; + vr+=(gauss[vl+1]*gvalr(1)) >> 15; + vr+=(gauss[vl+2]*gvalr(2)) >> 15; + vr+=(gauss[vl+3]*gvalr(3)) >> 15; + l |= vr << 16; } else { @@ -229,12 +303,12 @@ INLINE void FeedXA(xa_decode_t *xap) ssat32_to_16(l2); l=(l1&0xffff)|(l2<<16); - *XAFeed++=l; + *spu.XAFeed++=l; - if(XAFeed==XAEnd) XAFeed=XAStart; - if(XAFeed==XAPlay) + if(spu.XAFeed==spu.XAEnd) spu.XAFeed=spu.XAStart; + if(spu.XAFeed==spu.XAPlay) { - if(XAPlay!=XAStart) XAFeed=XAPlay-1; + if(spu.XAPlay!=spu.XAStart) spu.XAFeed=spu.XAPlay-1; break; } @@ -242,10 +316,11 @@ INLINE void FeedXA(xa_decode_t *xap) } } else +#endif { for(i=0;i=0x10000L) { @@ -256,16 +331,16 @@ INLINE void FeedXA(xa_decode_t *xap) spos -= 0x10000L; } vl = (spos >> 6) & ~3; - vr=(gauss[vl]*gvall0)&~2047; - vr+=(gauss[vl+1]*gvall(1))&~2047; - vr+=(gauss[vl+2]*gvall(2))&~2047; - vr+=(gauss[vl+3]*gvall(3))&~2047; - l= (vr >> 11) & 0xffff; - vr=(gauss[vl]*gvalr0)&~2047; - vr+=(gauss[vl+1]*gvalr(1))&~2047; - vr+=(gauss[vl+2]*gvalr(2))&~2047; - vr+=(gauss[vl+3]*gvalr(3))&~2047; - l |= vr << 5; + vr=(gauss[vl]*gvall0) >> 15; + vr+=(gauss[vl+1]*gvall(1)) >> 15; + vr+=(gauss[vl+2]*gvall(2)) >> 15; + vr+=(gauss[vl+3]*gvall(3)) >> 15; + l= vr & 0xffff; + vr=(gauss[vl]*gvalr0) >> 15; + vr+=(gauss[vl+1]*gvalr(1)) >> 15; + vr+=(gauss[vl+2]*gvalr(2)) >> 15; + vr+=(gauss[vl+3]*gvalr(3)) >> 15; + l |= vr << 16; } else { @@ -276,12 +351,12 @@ INLINE void FeedXA(xa_decode_t *xap) } } - *XAFeed++=l; + *spu.XAFeed++=l; - if(XAFeed==XAEnd) XAFeed=XAStart; - if(XAFeed==XAPlay) + if(spu.XAFeed==spu.XAEnd) spu.XAFeed=spu.XAStart; + if(spu.XAFeed==spu.XAPlay) { - if(XAPlay!=XAStart) XAFeed=XAPlay-1; + if(spu.XAPlay!=spu.XAStart) spu.XAFeed=spu.XAPlay-1; break; } @@ -294,12 +369,13 @@ INLINE void FeedXA(xa_decode_t *xap) unsigned short * pS=(unsigned short *)xap->pcm; uint32_t l;short s=0; - if(iXAPitch) +#if 0 + if(spu_config.iXAPitch) { int32_t l1; for(i=0;i=0x10000L) { @@ -308,11 +384,11 @@ INLINE void FeedXA(xa_decode_t *xap) spos -= 0x10000L; } vl = (spos >> 6) & ~3; - vr=(gauss[vl]*gvall0)&~2047; - vr+=(gauss[vl+1]*gvall(1))&~2047; - vr+=(gauss[vl+2]*gvall(2))&~2047; - vr+=(gauss[vl+3]*gvall(3))&~2047; - l1=s= vr >> 11; + vr=(gauss[vl]*gvall0) >> 15; + vr+=(gauss[vl+1]*gvall(1)) >> 15; + vr+=(gauss[vl+2]*gvall(2)) >> 15; + vr+=(gauss[vl+3]*gvall(3)) >> 15; + l1=s= vr; l1 &= 0xffff; } else @@ -328,12 +404,12 @@ INLINE void FeedXA(xa_decode_t *xap) l1=(l1*iPlace)/iSize; ssat32_to_16(l1); l=(l1&0xffff)|(l1<<16); - *XAFeed++=l; + *spu.XAFeed++=l; - if(XAFeed==XAEnd) XAFeed=XAStart; - if(XAFeed==XAPlay) + if(spu.XAFeed==spu.XAEnd) spu.XAFeed=spu.XAStart; + if(spu.XAFeed==spu.XAPlay) { - if(XAPlay!=XAStart) XAFeed=XAPlay-1; + if(spu.XAPlay!=spu.XAStart) spu.XAFeed=spu.XAPlay-1; break; } @@ -341,10 +417,11 @@ INLINE void FeedXA(xa_decode_t *xap) } } else +#endif { for(i=0;i=0x10000L) { @@ -353,11 +430,11 @@ INLINE void FeedXA(xa_decode_t *xap) spos -= 0x10000L; } vl = (spos >> 6) & ~3; - vr=(gauss[vl]*gvall0)&~2047; - vr+=(gauss[vl+1]*gvall(1))&~2047; - vr+=(gauss[vl+2]*gvall(2))&~2047; - vr+=(gauss[vl+3]*gvall(3))&~2047; - l=s= vr >> 11; + vr=(gauss[vl]*gvall0) >> 15; + vr+=(gauss[vl+1]*gvall(1)) >> 15; + vr+=(gauss[vl+2]*gvall(2)) >> 15; + vr+=(gauss[vl+3]*gvall(3)) >> 15; + l=s= vr; } else { @@ -370,12 +447,12 @@ INLINE void FeedXA(xa_decode_t *xap) } l &= 0xffff; - *XAFeed++=(l|(l<<16)); + *spu.XAFeed++=(l|(l<<16)); - if(XAFeed==XAEnd) XAFeed=XAStart; - if(XAFeed==XAPlay) + if(spu.XAFeed==spu.XAEnd) spu.XAFeed=spu.XAStart; + if(spu.XAFeed==spu.XAPlay) { - if(XAPlay!=XAStart) XAFeed=XAPlay-1; + if(spu.XAPlay!=spu.XAStart) spu.XAFeed=spu.XAPlay-1; break; } @@ -389,29 +466,30 @@ INLINE void FeedXA(xa_decode_t *xap) // FEED CDDA //////////////////////////////////////////////////////////////////////// -INLINE int FeedCDDA(unsigned char *pcm, int nBytes) +void FeedCDDA(unsigned char *pcm, int nBytes) { int space; - space=(CDDAPlay-CDDAFeed-1)*4 & (CDDA_BUFFER_SIZE - 1); - if(space0) { - if(CDDAFeed==CDDAEnd) CDDAFeed=CDDAStart; - space=(CDDAPlay-CDDAFeed-1)*4 & (CDDA_BUFFER_SIZE - 1); - if(CDDAFeed+space/4>CDDAEnd) - space=(CDDAEnd-CDDAFeed)*4; + if(spu.CDDAFeed==spu.CDDAEnd) spu.CDDAFeed=spu.CDDAStart; + space=(spu.CDDAPlay-spu.CDDAFeed-1)*4 & (CDDA_BUFFER_SIZE - 1); + if(spu.CDDAFeed+space/4>spu.CDDAEnd) + space=(spu.CDDAEnd-spu.CDDAFeed)*4; if(space>nBytes) space=nBytes; - memcpy(CDDAFeed,pcm,space); - CDDAFeed+=space/4; + memcpy(spu.CDDAFeed,pcm,space); + spu.CDDAFeed+=space/4; nBytes-=space; pcm+=space; } - - return 0x676f; // rearmed_go } #endif +// vim:shiftwidth=1:expandtab