From efce366c5b6596b9542c4fe8c69695191dab5d5a Mon Sep 17 00:00:00 2001 From: notaz Date: Mon, 9 Jul 2012 02:00:18 +0300 Subject: [PATCH] spu: handle cd decode buffers too --- plugins/dfsound/externals.h | 3 -- plugins/dfsound/xa.c | 64 ++++++++++++++++++------------------- 2 files changed, 32 insertions(+), 35 deletions(-) diff --git a/plugins/dfsound/externals.h b/plugins/dfsound/externals.h index f844b259..fbf9d181 100644 --- a/plugins/dfsound/externals.h +++ b/plugins/dfsound/externals.h @@ -248,9 +248,6 @@ extern uint32_t * XAPlay; extern uint32_t * XAStart; extern uint32_t * XAEnd; -extern uint32_t XARepeat; -extern uint32_t XALastVal; - extern uint32_t * CDDAFeed; extern uint32_t * CDDAPlay; extern uint32_t * CDDAStart; diff --git a/plugins/dfsound/xa.c b/plugins/dfsound/xa.c index b1efe10d..af78acbe 100644 --- a/plugins/dfsound/xa.c +++ b/plugins/dfsound/xa.c @@ -22,8 +22,6 @@ // will be included from spu.c #ifdef _IN_SPU -#define XA_HACK - //////////////////////////////////////////////////////////////////////// // XA GLOBALS //////////////////////////////////////////////////////////////////////// @@ -61,42 +59,44 @@ static int gauss_window[8] = {0, 0, 0, 0, 0, 0, 0, 0}; INLINE void MixXA(void) { int ns; - uint32_t l; + short l, r; + uint32_t v; + int cursor = decode_pos; - for(ns=0;ns>16)&0xffff)) * iRightXAVol)/32768; -#else - SSumLR[ns++]+=(((short)(XALastVal&0xffff)) * iLeftXAVol)/32767; - SSumLR[ns++]+=(((short)((XALastVal>>16)&0xffff)) * iRightXAVol)/32767; -#endif - } - - if(XAPlay==XAFeed && XARepeat) - { + if(XAPlay != XAFeed || XARepeat > 0) + { + if(XAPlay == XAFeed) XARepeat--; - for(;ns>16)&0xffff)) * iRightXAVol)/32768; -#else - SSumLR[ns++]+=(((short)(XALastVal&0xffff)) * iLeftXAVol)/32767; - SSumLR[ns++]+=(((short)((XALastVal>>16)&0xffff)) * iRightXAVol)/32767; -#endif - } - } + + v = XALastVal; + 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; + } + XALastVal = v; + } for(ns=0;ns> 15; - SSumLR[ns++]+=(((short)((l>>16)&0xffff)) * iRightXAVol) >> 15; + + 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; + cursor = (cursor + 1) & 0x1ff; } } -- 2.39.2