Commit | Line | Data |
---|---|---|
ef79bbde P |
1 | /*************************************************************************** |
2 | xa.c - description | |
3 | ------------------- | |
4 | begin : Wed May 15 2002 | |
5 | copyright : (C) 2002 by Pete Bernert | |
6 | email : BlackDove@addcom.de | |
7 | ***************************************************************************/ | |
8 | /*************************************************************************** | |
9 | * * | |
10 | * This program is free software; you can redistribute it and/or modify * | |
11 | * it under the terms of the GNU General Public License as published by * | |
12 | * the Free Software Foundation; either version 2 of the License, or * | |
13 | * (at your option) any later version. See also the license.txt file for * | |
14 | * additional informations. * | |
15 | * * | |
16 | ***************************************************************************/ | |
17 | ||
18 | #include "stdafx.h" | |
b71a957f | 19 | #include "spu.h" |
ef79bbde P |
20 | #define _IN_XA |
21 | #include <stdint.h> | |
22 | ||
23 | // will be included from spu.c | |
24 | #ifdef _IN_SPU | |
25 | ||
26 | //////////////////////////////////////////////////////////////////////// | |
27 | // XA GLOBALS | |
28 | //////////////////////////////////////////////////////////////////////// | |
29 | ||
ef79bbde P |
30 | static int gauss_ptr = 0; |
31 | static int gauss_window[8] = {0, 0, 0, 0, 0, 0, 0, 0}; | |
32 | ||
33 | #define gvall0 gauss_window[gauss_ptr] | |
34 | #define gvall(x) gauss_window[(gauss_ptr+x)&3] | |
35 | #define gvalr0 gauss_window[4+gauss_ptr] | |
36 | #define gvalr(x) gauss_window[4+((gauss_ptr+x)&3)] | |
37 | ||
38 | //////////////////////////////////////////////////////////////////////// | |
39 | // MIX XA & CDDA | |
40 | //////////////////////////////////////////////////////////////////////// | |
41 | ||
e81f182d | 42 | INLINE void MixXA(int *SSumLR, int *RVB, int ns_to, int decode_pos) |
ef79bbde | 43 | { |
215ff9e6 | 44 | int cursor = decode_pos; |
ef79bbde | 45 | int ns; |
efce366c | 46 | short l, r; |
b3ddf04a | 47 | uint32_t v = spu.XALastVal; |
ef79bbde | 48 | |
3154bfab | 49 | if(spu.XAPlay != spu.XAFeed || spu.XARepeat > 0) |
efce366c | 50 | { |
3154bfab | 51 | if(spu.XAPlay == spu.XAFeed) |
52 | spu.XARepeat--; | |
efce366c | 53 | |
e81f182d | 54 | for(ns = 0; ns < ns_to*2; ns += 2) |
efce366c | 55 | { |
3154bfab | 56 | if(spu.XAPlay != spu.XAFeed) v=*spu.XAPlay++; |
57 | if(spu.XAPlay == spu.XAEnd) spu.XAPlay=spu.XAStart; | |
efce366c | 58 | |
3154bfab | 59 | l = ((int)(short)v * spu.iLeftXAVol) >> 15; |
60 | r = ((int)(short)(v >> 16) * spu.iLeftXAVol) >> 15; | |
e81f182d | 61 | if (spu.spuCtrl & CTRL_CD) |
62 | { | |
63 | SSumLR[ns+0] += l; | |
64 | SSumLR[ns+1] += r; | |
65 | } | |
66 | if (unlikely(spu.spuCtrl & CTRL_CDREVERB)) | |
67 | { | |
68 | RVB[ns+0] += l; | |
69 | RVB[ns+1] += r; | |
70 | } | |
1d753163 | 71 | |
b71a957f PC |
72 | spu.spuMem[cursor] = HTOLE16(v); |
73 | spu.spuMem[cursor + 0x400/2] = HTOLE16(v >> 16); | |
efce366c | 74 | cursor = (cursor + 1) & 0x1ff; |
75 | } | |
3154bfab | 76 | spu.XALastVal = v; |
efce366c | 77 | } |
b3ddf04a | 78 | // occasionally CDDAFeed underflows by a few samples due to poor timing, |
79 | // hence this 'ns_to < 8' | |
80 | else if(spu.CDDAPlay != spu.CDDAFeed || ns_to < 8) | |
81 | { | |
e81f182d | 82 | for(ns = 0; ns < ns_to*2; ns += 2) |
b3ddf04a | 83 | { |
84 | if(spu.CDDAPlay != spu.CDDAFeed) v=*spu.CDDAPlay++; | |
85 | if(spu.CDDAPlay == spu.CDDAEnd) spu.CDDAPlay=spu.CDDAStart; | |
ef79bbde | 86 | |
b3ddf04a | 87 | l = ((int)(short)v * spu.iLeftXAVol) >> 15; |
88 | r = ((int)(short)(v >> 16) * spu.iLeftXAVol) >> 15; | |
e81f182d | 89 | if (spu.spuCtrl & CTRL_CD) |
90 | { | |
91 | SSumLR[ns+0] += l; | |
92 | SSumLR[ns+1] += r; | |
93 | } | |
94 | if (unlikely(spu.spuCtrl & CTRL_CDREVERB)) | |
95 | { | |
96 | RVB[ns+0] += l; | |
97 | RVB[ns+1] += r; | |
98 | } | |
1d753163 | 99 | |
b71a957f PC |
100 | spu.spuMem[cursor] = HTOLE16(v); |
101 | spu.spuMem[cursor + 0x400/2] = HTOLE16(v >> 16); | |
b3ddf04a | 102 | cursor = (cursor + 1) & 0x1ff; |
103 | } | |
104 | spu.XALastVal = v; | |
105 | } | |
106 | else | |
107 | spu.XALastVal = 0; | |
ef79bbde P |
108 | } |
109 | ||
110 | //////////////////////////////////////////////////////////////////////// | |
111 | // small linux time helper... only used for watchdog | |
112 | //////////////////////////////////////////////////////////////////////// | |
113 | ||
db3bfe5c | 114 | #if 0 |
f05d6ca2 | 115 | static unsigned long timeGetTime_spu() |
ef79bbde | 116 | { |
de4a0279 | 117 | #if defined(NO_OS) |
118 | return 0; | |
119 | #elif defined(_WIN32) | |
003cfc63 | 120 | return GetTickCount(); |
121 | #else | |
ef79bbde P |
122 | struct timeval tv; |
123 | gettimeofday(&tv, 0); // well, maybe there are better ways | |
124 | return tv.tv_sec * 1000 + tv.tv_usec/1000; // to do that, but at least it works | |
003cfc63 | 125 | #endif |
ef79bbde | 126 | } |
db3bfe5c | 127 | #endif |
ef79bbde P |
128 | |
129 | //////////////////////////////////////////////////////////////////////// | |
130 | // FEED XA | |
131 | //////////////////////////////////////////////////////////////////////// | |
132 | ||
403a6290 | 133 | void FeedXA(const xa_decode_t *xap) |
ef79bbde P |
134 | { |
135 | int sinc,spos,i,iSize,iPlace,vl,vr; | |
136 | ||
3154bfab | 137 | if(!spu.bSPUIsOpen) return; |
ef79bbde | 138 | |
cdaef86c | 139 | spu.XARepeat = 3; // set up repeat |
ef79bbde | 140 | |
97ea4077 | 141 | #if 0//def XA_HACK |
ef79bbde P |
142 | iSize=((45500*xap->nsamples)/xap->freq); // get size |
143 | #else | |
144 | iSize=((44100*xap->nsamples)/xap->freq); // get size | |
145 | #endif | |
146 | if(!iSize) return; // none? bye | |
147 | ||
3154bfab | 148 | if(spu.XAFeed<spu.XAPlay) iPlace=spu.XAPlay-spu.XAFeed; // how much space in my buf? |
149 | else iPlace=(spu.XAEnd-spu.XAFeed) + (spu.XAPlay-spu.XAStart); | |
ef79bbde P |
150 | |
151 | if(iPlace==0) return; // no place at all | |
152 | ||
153 | //----------------------------------------------------// | |
db3bfe5c | 154 | #if 0 |
3154bfab | 155 | if(spu_config.iXAPitch) // pitch change option? |
ef79bbde P |
156 | { |
157 | static DWORD dwLT=0; | |
158 | static DWORD dwFPS=0; | |
159 | static int iFPSCnt=0; | |
160 | static int iLastSize=0; | |
161 | static DWORD dwL1=0; | |
162 | DWORD dw=timeGetTime_spu(),dw1,dw2; | |
163 | ||
164 | iPlace=iSize; | |
165 | ||
166 | dwFPS+=dw-dwLT;iFPSCnt++; | |
167 | ||
168 | dwLT=dw; | |
169 | ||
170 | if(iFPSCnt>=10) | |
171 | { | |
172 | if(!dwFPS) dwFPS=1; | |
173 | dw1=1000000/dwFPS; | |
174 | if(dw1>=(dwL1-100) && dw1<=(dwL1+100)) dw1=dwL1; | |
175 | else dwL1=dw1; | |
176 | dw2=(xap->freq*100/xap->nsamples); | |
177 | if((!dw1)||((dw2+100)>=dw1)) iLastSize=0; | |
178 | else | |
179 | { | |
180 | iLastSize=iSize*dw2/dw1; | |
181 | if(iLastSize>iPlace) iLastSize=iPlace; | |
182 | iSize=iLastSize; | |
183 | } | |
184 | iFPSCnt=0;dwFPS=0; | |
185 | } | |
186 | else | |
187 | { | |
188 | if(iLastSize) iSize=iLastSize; | |
189 | } | |
190 | } | |
db3bfe5c | 191 | #endif |
ef79bbde P |
192 | //----------------------------------------------------// |
193 | ||
194 | spos=0x10000L; | |
195 | sinc = (xap->nsamples << 16) / iSize; // calc freq by num / size | |
196 | ||
197 | if(xap->stereo) | |
198 | { | |
199 | uint32_t * pS=(uint32_t *)xap->pcm; | |
200 | uint32_t l=0; | |
201 | ||
db3bfe5c | 202 | #if 0 |
3154bfab | 203 | if(spu_config.iXAPitch) |
ef79bbde P |
204 | { |
205 | int32_t l1,l2;short s; | |
206 | for(i=0;i<iSize;i++) | |
207 | { | |
3154bfab | 208 | if(spu_config.iUseInterpolation==2) |
ef79bbde P |
209 | { |
210 | while(spos>=0x10000L) | |
211 | { | |
212 | l = *pS++; | |
213 | gauss_window[gauss_ptr] = (short)LOWORD(l); | |
214 | gauss_window[4+gauss_ptr] = (short)HIWORD(l); | |
215 | gauss_ptr = (gauss_ptr+1) & 3; | |
216 | spos -= 0x10000L; | |
217 | } | |
218 | vl = (spos >> 6) & ~3; | |
63646208 S |
219 | vr=(gauss[vl]*gvall0) >> 15; |
220 | vr+=(gauss[vl+1]*gvall(1)) >> 15; | |
221 | vr+=(gauss[vl+2]*gvall(2)) >> 15; | |
222 | vr+=(gauss[vl+3]*gvall(3)) >> 15; | |
223 | l= vr & 0xffff; | |
224 | vr=(gauss[vl]*gvalr0) >> 15; | |
225 | vr+=(gauss[vl+1]*gvalr(1)) >> 15; | |
226 | vr+=(gauss[vl+2]*gvalr(2)) >> 15; | |
227 | vr+=(gauss[vl+3]*gvalr(3)) >> 15; | |
228 | l |= vr << 16; | |
ef79bbde P |
229 | } |
230 | else | |
231 | { | |
232 | while(spos>=0x10000L) | |
233 | { | |
234 | l = *pS++; | |
235 | spos -= 0x10000L; | |
236 | } | |
237 | } | |
238 | ||
239 | s=(short)LOWORD(l); | |
240 | l1=s; | |
241 | l1=(l1*iPlace)/iSize; | |
381ea103 | 242 | ssat32_to_16(l1); |
ef79bbde P |
243 | s=(short)HIWORD(l); |
244 | l2=s; | |
245 | l2=(l2*iPlace)/iSize; | |
381ea103 | 246 | ssat32_to_16(l2); |
ef79bbde P |
247 | l=(l1&0xffff)|(l2<<16); |
248 | ||
3154bfab | 249 | *spu.XAFeed++=l; |
ef79bbde | 250 | |
3154bfab | 251 | if(spu.XAFeed==spu.XAEnd) spu.XAFeed=spu.XAStart; |
252 | if(spu.XAFeed==spu.XAPlay) | |
ef79bbde | 253 | { |
3154bfab | 254 | if(spu.XAPlay!=spu.XAStart) spu.XAFeed=spu.XAPlay-1; |
ef79bbde P |
255 | break; |
256 | } | |
257 | ||
258 | spos += sinc; | |
259 | } | |
260 | } | |
261 | else | |
db3bfe5c | 262 | #endif |
ef79bbde P |
263 | { |
264 | for(i=0;i<iSize;i++) | |
265 | { | |
3154bfab | 266 | if(spu_config.iUseInterpolation==2) |
ef79bbde P |
267 | { |
268 | while(spos>=0x10000L) | |
269 | { | |
270 | l = *pS++; | |
271 | gauss_window[gauss_ptr] = (short)LOWORD(l); | |
272 | gauss_window[4+gauss_ptr] = (short)HIWORD(l); | |
273 | gauss_ptr = (gauss_ptr+1) & 3; | |
274 | spos -= 0x10000L; | |
275 | } | |
276 | vl = (spos >> 6) & ~3; | |
63646208 S |
277 | vr=(gauss[vl]*gvall0) >> 15; |
278 | vr+=(gauss[vl+1]*gvall(1)) >> 15; | |
279 | vr+=(gauss[vl+2]*gvall(2)) >> 15; | |
280 | vr+=(gauss[vl+3]*gvall(3)) >> 15; | |
281 | l= vr & 0xffff; | |
282 | vr=(gauss[vl]*gvalr0) >> 15; | |
283 | vr+=(gauss[vl+1]*gvalr(1)) >> 15; | |
284 | vr+=(gauss[vl+2]*gvalr(2)) >> 15; | |
285 | vr+=(gauss[vl+3]*gvalr(3)) >> 15; | |
286 | l |= vr << 16; | |
ef79bbde P |
287 | } |
288 | else | |
289 | { | |
290 | while(spos>=0x10000L) | |
291 | { | |
292 | l = *pS++; | |
293 | spos -= 0x10000L; | |
294 | } | |
295 | } | |
296 | ||
3154bfab | 297 | *spu.XAFeed++=l; |
ef79bbde | 298 | |
3154bfab | 299 | if(spu.XAFeed==spu.XAEnd) spu.XAFeed=spu.XAStart; |
300 | if(spu.XAFeed==spu.XAPlay) | |
ef79bbde | 301 | { |
3154bfab | 302 | if(spu.XAPlay!=spu.XAStart) spu.XAFeed=spu.XAPlay-1; |
ef79bbde P |
303 | break; |
304 | } | |
305 | ||
306 | spos += sinc; | |
307 | } | |
308 | } | |
309 | } | |
310 | else | |
311 | { | |
312 | unsigned short * pS=(unsigned short *)xap->pcm; | |
313 | uint32_t l;short s=0; | |
314 | ||
db3bfe5c | 315 | #if 0 |
3154bfab | 316 | if(spu_config.iXAPitch) |
ef79bbde P |
317 | { |
318 | int32_t l1; | |
319 | for(i=0;i<iSize;i++) | |
320 | { | |
3154bfab | 321 | if(spu_config.iUseInterpolation==2) |
ef79bbde P |
322 | { |
323 | while(spos>=0x10000L) | |
324 | { | |
325 | gauss_window[gauss_ptr] = (short)*pS++; | |
326 | gauss_ptr = (gauss_ptr+1) & 3; | |
327 | spos -= 0x10000L; | |
328 | } | |
329 | vl = (spos >> 6) & ~3; | |
63646208 S |
330 | vr=(gauss[vl]*gvall0) >> 15; |
331 | vr+=(gauss[vl+1]*gvall(1)) >> 15; | |
332 | vr+=(gauss[vl+2]*gvall(2)) >> 15; | |
333 | vr+=(gauss[vl+3]*gvall(3)) >> 15; | |
334 | l1=s= vr; | |
ef79bbde P |
335 | l1 &= 0xffff; |
336 | } | |
337 | else | |
338 | { | |
339 | while(spos>=0x10000L) | |
340 | { | |
341 | s = *pS++; | |
342 | spos -= 0x10000L; | |
343 | } | |
344 | l1=s; | |
345 | } | |
346 | ||
347 | l1=(l1*iPlace)/iSize; | |
381ea103 | 348 | ssat32_to_16(l1); |
ef79bbde | 349 | l=(l1&0xffff)|(l1<<16); |
3154bfab | 350 | *spu.XAFeed++=l; |
ef79bbde | 351 | |
3154bfab | 352 | if(spu.XAFeed==spu.XAEnd) spu.XAFeed=spu.XAStart; |
353 | if(spu.XAFeed==spu.XAPlay) | |
ef79bbde | 354 | { |
3154bfab | 355 | if(spu.XAPlay!=spu.XAStart) spu.XAFeed=spu.XAPlay-1; |
ef79bbde P |
356 | break; |
357 | } | |
358 | ||
359 | spos += sinc; | |
360 | } | |
361 | } | |
362 | else | |
db3bfe5c | 363 | #endif |
ef79bbde P |
364 | { |
365 | for(i=0;i<iSize;i++) | |
366 | { | |
3154bfab | 367 | if(spu_config.iUseInterpolation==2) |
ef79bbde P |
368 | { |
369 | while(spos>=0x10000L) | |
370 | { | |
371 | gauss_window[gauss_ptr] = (short)*pS++; | |
372 | gauss_ptr = (gauss_ptr+1) & 3; | |
373 | spos -= 0x10000L; | |
374 | } | |
375 | vl = (spos >> 6) & ~3; | |
63646208 S |
376 | vr=(gauss[vl]*gvall0) >> 15; |
377 | vr+=(gauss[vl+1]*gvall(1)) >> 15; | |
378 | vr+=(gauss[vl+2]*gvall(2)) >> 15; | |
379 | vr+=(gauss[vl+3]*gvall(3)) >> 15; | |
380 | l=s= vr; | |
ef79bbde P |
381 | } |
382 | else | |
383 | { | |
384 | while(spos>=0x10000L) | |
385 | { | |
386 | s = *pS++; | |
387 | spos -= 0x10000L; | |
388 | } | |
389 | l=s; | |
390 | } | |
391 | ||
9098b863 | 392 | l &= 0xffff; |
3154bfab | 393 | *spu.XAFeed++=(l|(l<<16)); |
ef79bbde | 394 | |
3154bfab | 395 | if(spu.XAFeed==spu.XAEnd) spu.XAFeed=spu.XAStart; |
396 | if(spu.XAFeed==spu.XAPlay) | |
ef79bbde | 397 | { |
3154bfab | 398 | if(spu.XAPlay!=spu.XAStart) spu.XAFeed=spu.XAPlay-1; |
ef79bbde P |
399 | break; |
400 | } | |
401 | ||
402 | spos += sinc; | |
403 | } | |
404 | } | |
405 | } | |
406 | } | |
407 | ||
408 | //////////////////////////////////////////////////////////////////////// | |
409 | // FEED CDDA | |
410 | //////////////////////////////////////////////////////////////////////// | |
411 | ||
403a6290 | 412 | void FeedCDDA(unsigned char *pcm, int nBytes) |
ef79bbde | 413 | { |
983a7cfd | 414 | int space; |
3154bfab | 415 | space=(spu.CDDAPlay-spu.CDDAFeed-1)*4 & (CDDA_BUFFER_SIZE - 1); |
983a7cfd | 416 | if(space<nBytes) |
403a6290 | 417 | return; |
983a7cfd | 418 | |
ef79bbde P |
419 | while(nBytes>0) |
420 | { | |
3154bfab | 421 | if(spu.CDDAFeed==spu.CDDAEnd) spu.CDDAFeed=spu.CDDAStart; |
422 | space=(spu.CDDAPlay-spu.CDDAFeed-1)*4 & (CDDA_BUFFER_SIZE - 1); | |
423 | if(spu.CDDAFeed+space/4>spu.CDDAEnd) | |
424 | space=(spu.CDDAEnd-spu.CDDAFeed)*4; | |
983a7cfd | 425 | if(space>nBytes) |
426 | space=nBytes; | |
427 | ||
3154bfab | 428 | memcpy(spu.CDDAFeed,pcm,space); |
429 | spu.CDDAFeed+=space/4; | |
983a7cfd | 430 | nBytes-=space; |
431 | pcm+=space; | |
ef79bbde P |
432 | } |
433 | } | |
434 | ||
435 | #endif | |
e81f182d | 436 | // vim:shiftwidth=1:expandtab |