1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
|
/*
* Schism Tracker - a cross-platform Impulse Tracker clone
* copyright (c) 2003-2005 Storlek <storlek@rigelseven.com>
* copyright (c) 2005-2008 Mrs. Brisby <mrs.brisby@nimh.org>
* copyright (c) 2009 Storlek & Mrs. Brisby
* copyright (c) 2010-2012 Storlek
* URL: http://schismtracker.org/
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <stdint.h>
#include <math.h>
#include "sndfile.h"
#include "snd_fm.h"
#include "cmixer.h"
#include "util.h" // for CLAMP
// For pingpong loops that work like most of Impulse Tracker's drivers
// (including SB16, SBPro, and the disk writer) -- as well as XMPlay, use 2
// To make them sound like the GUS driver, use 1.
// It's really only noticeable for very small loops... (e.g. chip samples)
// (thanks Saga_Musix for this)
#define PINGPONG_OFFSET 2
/* The following lut settings are PRECOMPUTED.
*
* If you plan on changing these settings, you
* MUST also regenerate the arrays.
*/
// number of bits used to scale spline coefs
#define SPLINE_QUANTBITS 14
#define SPLINE_QUANTSCALE (1L << SPLINE_QUANTBITS)
#define SPLINE_8SHIFT (SPLINE_QUANTBITS - 8)
#define SPLINE_16SHIFT (SPLINE_QUANTBITS)
// forces coefsset to unity gain
#define SPLINE_CLAMPFORUNITY
// log2(number) of precalculated splines (range is [4..14])
#define SPLINE_FRACBITS 10
#define SPLINE_LUTLEN (1L<<SPLINE_FRACBITS)
// quantizer scale of window coefs
#define WFIR_QUANTBITS 15
#define WFIR_QUANTSCALE (1L << WFIR_QUANTBITS)
#define WFIR_8SHIFT (WFIR_QUANTBITS - 8)
#define WFIR_16BITSHIFT (WFIR_QUANTBITS)
// log2(number)-1 of precalculated taps range is [4..12]
#define WFIR_FRACBITS 10
#define WFIR_LUTLEN ((1L << (WFIR_FRACBITS + 1)) + 1)
// number of samples in window
#define WFIR_LOG2WIDTH 3
#define WFIR_WIDTH (1L << WFIR_LOG2WIDTH)
#define WFIR_SMPSPERWING ((WFIR_WIDTH-1)>>1)
// cutoff (1.0 == pi/2)
#define WFIR_CUTOFF 0.90f
// wfir type
#define WFIR_HANN 0
#define WFIR_HAMMING 1
#define WFIR_BLACKMANEXACT 2
#define WFIR_BLACKMAN3T61 3
#define WFIR_BLACKMAN3T67 4
#define WFIR_BLACKMAN4T92 5
#define WFIR_BLACKMAN4T74 6
#define WFIR_KAISER4T 7
#define WFIR_TYPE WFIR_BLACKMANEXACT
// wfir help
#ifndef M_zPI
#define M_zPI 3.1415926535897932384626433832795
#endif
#define M_zEPS 1e-8
#define M_zBESSELEPS 1e-21
#include "precomp_lut.h"
// ----------------------------------------------------------------------------
// MIXING MACROS
// ----------------------------------------------------------------------------
#define SNDMIX_BEGINSAMPLELOOP8 \
register song_voice_t * const chan = channel; \
position = chan->position_frac; \
const signed char *p = (signed char *)(chan->current_sample_data + chan->position); \
if (chan->flags & CHN_STEREO) p += chan->position; \
int *pvol = pbuffer;\
do {
#define SNDMIX_BEGINSAMPLELOOP16\
register song_voice_t * const chan = channel;\
position = chan->position_frac;\
const signed short *p = (signed short *)(chan->current_sample_data+(chan->position*2));\
if (chan->flags & CHN_STEREO) p += chan->position;\
int *pvol = pbuffer;\
do {
#define SNDMIX_ENDSAMPLELOOP \
position += chan->increment; \
} while (pvol < pbufmax); \
chan->position += position >> 16; \
chan->position_frac = position & 0xFFFF;
#define SNDMIX_ENDSAMPLELOOP8 SNDMIX_ENDSAMPLELOOP
#define SNDMIX_ENDSAMPLELOOP16 SNDMIX_ENDSAMPLELOOP
//////////////////////////////////////////////////////////////////////////////
// Mono
// No interpolation
#define SNDMIX_GETMONOVOL8NOIDO \
int vol = p[position >> 16] << 8;
#define SNDMIX_GETMONOVOL16NOIDO \
int vol = p[position >> 16];
// Linear Interpolation
#define SNDMIX_GETMONOVOL8LINEAR \
int poshi = position >> 16; \
int poslo = (position >> 8) & 0xFF; \
int srcvol = p[poshi]; \
int destvol = p[poshi+1]; \
int vol = (srcvol<<8) + ((int)(poslo * (destvol - srcvol)));
#define SNDMIX_GETMONOVOL16LINEAR \
int poshi = position >> 16; \
int poslo = (position >> 8) & 0xFF; \
int srcvol = p[poshi]; \
int destvol = p[poshi + 1]; \
int vol = srcvol + ((int)(poslo * (destvol - srcvol)) >> 8);
// spline interpolation (2 guard bits should be enough???)
#define SPLINE_FRACSHIFT ((16 - SPLINE_FRACBITS) - 2)
#define SPLINE_FRACMASK (((1L << (16 - SPLINE_FRACSHIFT)) - 1) & ~3)
#define SNDMIX_GETMONOVOL8SPLINE \
int poshi = position >> 16; \
int poslo = (position >> SPLINE_FRACSHIFT) & SPLINE_FRACMASK; \
int vol = (cubic_spline_lut[poslo ] * (int)p[poshi - 1] + \
cubic_spline_lut[poslo + 1] * (int)p[poshi ] + \
cubic_spline_lut[poslo + 3] * (int)p[poshi + 2] + \
cubic_spline_lut[poslo + 2] * (int)p[poshi + 1]) >> SPLINE_8SHIFT;
#define SNDMIX_GETMONOVOL16SPLINE \
int poshi = position >> 16; \
int poslo = (position >> SPLINE_FRACSHIFT) & SPLINE_FRACMASK; \
int vol = (cubic_spline_lut[poslo ] * (int)p[poshi - 1] + \
cubic_spline_lut[poslo + 1] * (int)p[poshi ] + \
cubic_spline_lut[poslo + 3] * (int)p[poshi + 2] + \
cubic_spline_lut[poslo + 2] * (int)p[poshi + 1]) >> SPLINE_16SHIFT;
// fir interpolation
#define WFIR_FRACSHIFT (16 - (WFIR_FRACBITS + 1 + WFIR_LOG2WIDTH))
#define WFIR_FRACMASK ((((1L << (17 - WFIR_FRACSHIFT)) - 1) & ~((1L << WFIR_LOG2WIDTH) - 1)))
#define WFIR_FRACHALVE (1L << (16 - (WFIR_FRACBITS + 2)))
#define SNDMIX_GETMONOVOL8FIRFILTER \
int poshi = position >> 16;\
int poslo = (position & 0xFFFF);\
int firidx = ((poslo + WFIR_FRACHALVE) >> WFIR_FRACSHIFT) & WFIR_FRACMASK; \
int vol = (windowed_fir_lut[firidx + 0] * (int)p[poshi + 1 - 4]); \
vol += (windowed_fir_lut[firidx + 1] * (int)p[poshi + 2 - 4]); \
vol += (windowed_fir_lut[firidx + 2] * (int)p[poshi + 3 - 4]); \
vol += (windowed_fir_lut[firidx + 3] * (int)p[poshi + 4 - 4]); \
vol += (windowed_fir_lut[firidx + 4] * (int)p[poshi + 5 - 4]); \
vol += (windowed_fir_lut[firidx + 5] * (int)p[poshi + 6 - 4]); \
vol += (windowed_fir_lut[firidx + 6] * (int)p[poshi + 7 - 4]); \
vol += (windowed_fir_lut[firidx + 7] * (int)p[poshi + 8 - 4]); \
vol >>= WFIR_8SHIFT;
#define SNDMIX_GETMONOVOL16FIRFILTER \
int poshi = position >> 16;\
int poslo = (position & 0xFFFF);\
int firidx = ((poslo + WFIR_FRACHALVE) >> WFIR_FRACSHIFT) & WFIR_FRACMASK; \
int vol1 = (windowed_fir_lut[firidx + 0] * (int)p[poshi + 1 - 4]); \
vol1 += (windowed_fir_lut[firidx + 1] * (int)p[poshi + 2 - 4]); \
vol1 += (windowed_fir_lut[firidx + 2] * (int)p[poshi + 3 - 4]); \
vol1 += (windowed_fir_lut[firidx + 3] * (int)p[poshi + 4 - 4]); \
int vol2 = (windowed_fir_lut[firidx + 4] * (int)p[poshi + 5 - 4]); \
vol2 += (windowed_fir_lut[firidx + 5] * (int)p[poshi + 6 - 4]); \
vol2 += (windowed_fir_lut[firidx + 6] * (int)p[poshi + 7 - 4]); \
vol2 += (windowed_fir_lut[firidx + 7] * (int)p[poshi + 8 - 4]); \
int vol = ((vol1 >> 1) + (vol2 >> 1)) >> (WFIR_16BITSHIFT - 1);
/////////////////////////////////////////////////////////////////////////////
// Stereo
// No interpolation
#define SNDMIX_GETSTEREOVOL8NOIDO \
int vol_l = p[(position >> 16) * 2 ] << 8; \
int vol_r = p[(position >> 16) * 2 + 1] << 8;
#define SNDMIX_GETSTEREOVOL16NOIDO \
int vol_l = p[(position >> 16) * 2 ]; \
int vol_r = p[(position >> 16) * 2 + 1];
// Linear Interpolation
#define SNDMIX_GETSTEREOVOL8LINEAR \
int poshi = position >> 16; \
int poslo = (position >> 8) & 0xFF; \
int srcvol_l = p[poshi * 2]; \
int vol_l = (srcvol_l << 8) + ((int)(poslo * (p[poshi * 2 + 2] - srcvol_l))); \
int srcvol_r = p[poshi * 2 + 1]; \
int vol_r = (srcvol_r << 8) + ((int)(poslo * (p[poshi * 2 + 3] - srcvol_r)));
#define SNDMIX_GETSTEREOVOL16LINEAR \
int poshi = position >> 16; \
int poslo = (position >> 8) & 0xFF; \
int srcvol_l = p[poshi * 2]; \
int vol_l = srcvol_l + ((int)(poslo * (p[poshi * 2 + 2] - srcvol_l)) >> 8);\
int srcvol_r = p[poshi * 2 + 1];\
int vol_r = srcvol_r + ((int)(poslo * (p[poshi * 2 + 3] - srcvol_r)) >> 8);\
// Spline Interpolation
#define SNDMIX_GETSTEREOVOL8SPLINE \
int poshi = position >> 16; \
int poslo = (position >> SPLINE_FRACSHIFT) & SPLINE_FRACMASK; \
int vol_l = (cubic_spline_lut[poslo ] * (int)p[(poshi - 1) * 2 ] + \
cubic_spline_lut[poslo + 1] * (int)p[(poshi ) * 2 ] + \
cubic_spline_lut[poslo + 2] * (int)p[(poshi + 1) * 2 ] + \
cubic_spline_lut[poslo + 3] * (int)p[(poshi + 2) * 2 ]) >> SPLINE_8SHIFT; \
int vol_r = (cubic_spline_lut[poslo ] * (int)p[(poshi - 1) * 2 + 1] + \
cubic_spline_lut[poslo + 1] * (int)p[(poshi ) * 2 + 1] + \
cubic_spline_lut[poslo + 2] * (int)p[(poshi + 1) * 2 + 1] + \
cubic_spline_lut[poslo + 3] * (int)p[(poshi + 2) * 2 + 1]) >> SPLINE_8SHIFT;
#define SNDMIX_GETSTEREOVOL16SPLINE \
int poshi = position >> 16; \
int poslo = (position >> SPLINE_FRACSHIFT) & SPLINE_FRACMASK; \
int vol_l = (cubic_spline_lut[poslo ] * (int)p[(poshi - 1) * 2 ] + \
cubic_spline_lut[poslo + 1] * (int)p[(poshi ) * 2 ] + \
cubic_spline_lut[poslo + 2] * (int)p[(poshi + 1) * 2 ] + \
cubic_spline_lut[poslo + 3] * (int)p[(poshi + 2) * 2 ]) >> SPLINE_16SHIFT; \
int vol_r = (cubic_spline_lut[poslo ] * (int)p[(poshi - 1) * 2 + 1] + \
cubic_spline_lut[poslo + 1] * (int)p[(poshi ) * 2 + 1] + \
cubic_spline_lut[poslo + 2] * (int)p[(poshi + 1) * 2 + 1] + \
cubic_spline_lut[poslo + 3] * (int)p[(poshi + 2) * 2 + 1]) >> SPLINE_16SHIFT;
// fir interpolation
#define SNDMIX_GETSTEREOVOL8FIRFILTER \
int poshi = position >> 16;\
int poslo = (position & 0xFFFF);\
int firidx = ((poslo + WFIR_FRACHALVE) >> WFIR_FRACSHIFT) & WFIR_FRACMASK; \
int vol_l = (windowed_fir_lut[firidx + 0] * (int)p[(poshi + 1 - 4) * 2]); \
vol_l += (windowed_fir_lut[firidx + 1] * (int)p[(poshi + 2 - 4) * 2]); \
vol_l += (windowed_fir_lut[firidx + 2] * (int)p[(poshi + 3 - 4) * 2]); \
vol_l += (windowed_fir_lut[firidx + 3] * (int)p[(poshi + 4 - 4) * 2]); \
vol_l += (windowed_fir_lut[firidx + 4] * (int)p[(poshi + 5 - 4) * 2]); \
vol_l += (windowed_fir_lut[firidx + 5] * (int)p[(poshi + 6 - 4) * 2]); \
vol_l += (windowed_fir_lut[firidx + 6] * (int)p[(poshi + 7 - 4) * 2]); \
vol_l += (windowed_fir_lut[firidx + 7] * (int)p[(poshi + 8 - 4) * 2]); \
vol_l >>= WFIR_8SHIFT; \
int vol_r = (windowed_fir_lut[firidx + 0] * (int)p[(poshi + 1 - 4) * 2 + 1]); \
vol_r += (windowed_fir_lut[firidx + 1] * (int)p[(poshi + 2 - 4) * 2 + 1]); \
vol_r += (windowed_fir_lut[firidx + 2] * (int)p[(poshi + 3 - 4) * 2 + 1]); \
vol_r += (windowed_fir_lut[firidx + 3] * (int)p[(poshi + 4 - 4) * 2 + 1]); \
vol_r += (windowed_fir_lut[firidx + 4] * (int)p[(poshi + 5 - 4) * 2 + 1]); \
vol_r += (windowed_fir_lut[firidx + 5] * (int)p[(poshi + 6 - 4) * 2 + 1]); \
vol_r += (windowed_fir_lut[firidx + 6] * (int)p[(poshi + 7 - 4) * 2 + 1]); \
vol_r += (windowed_fir_lut[firidx + 7] * (int)p[(poshi + 8 - 4) * 2 + 1]); \
vol_r >>= WFIR_8SHIFT;
#define SNDMIX_GETSTEREOVOL16FIRFILTER \
int poshi = position >> 16;\
int poslo = (position & 0xFFFF);\
int firidx = ((poslo + WFIR_FRACHALVE) >> WFIR_FRACSHIFT) & WFIR_FRACMASK; \
int vol1_l = (windowed_fir_lut[firidx + 0] * (int)p[(poshi + 1 - 4) * 2]); \
vol1_l += (windowed_fir_lut[firidx + 1] * (int)p[(poshi + 2 - 4) * 2]); \
vol1_l += (windowed_fir_lut[firidx + 2] * (int)p[(poshi + 3 - 4) * 2]); \
vol1_l += (windowed_fir_lut[firidx + 3] * (int)p[(poshi + 4 - 4) * 2]); \
int vol2_l = (windowed_fir_lut[firidx + 4] * (int)p[(poshi + 5 - 4) * 2]); \
vol2_l += (windowed_fir_lut[firidx + 5] * (int)p[(poshi + 6 - 4) * 2]); \
vol2_l += (windowed_fir_lut[firidx + 6] * (int)p[(poshi + 7 - 4) * 2]); \
vol2_l += (windowed_fir_lut[firidx + 7] * (int)p[(poshi + 8 - 4) * 2]); \
int vol_l = ((vol1_l >> 1) + (vol2_l >> 1)) >> (WFIR_16BITSHIFT - 1); \
int vol1_r = (windowed_fir_lut[firidx + 0] * (int)p[(poshi + 1 - 4) * 2 + 1]); \
vol1_r += (windowed_fir_lut[firidx + 1] * (int)p[(poshi + 2 - 4) * 2 + 1]); \
vol1_r += (windowed_fir_lut[firidx + 2] * (int)p[(poshi + 3 - 4) * 2 + 1]); \
vol1_r += (windowed_fir_lut[firidx + 3] * (int)p[(poshi + 4 - 4) * 2 + 1]); \
int vol2_r = (windowed_fir_lut[firidx + 4] * (int)p[(poshi + 5 - 4) * 2 + 1]); \
vol2_r += (windowed_fir_lut[firidx + 5] * (int)p[(poshi + 6 - 4) * 2 + 1]); \
vol2_r += (windowed_fir_lut[firidx + 6] * (int)p[(poshi + 7 - 4) * 2 + 1]); \
vol2_r += (windowed_fir_lut[firidx + 7] * (int)p[(poshi + 8 - 4) * 2 + 1]); \
int vol_r = ((vol1_r >> 1) + (vol2_r >> 1)) >> (WFIR_16BITSHIFT - 1);
#define SNDMIX_STOREMONOVOL \
pvol[0] += vol * chan->right_volume; \
pvol[1] += vol * chan->left_volume; \
pvol += 2;
#define SNDMIX_STORESTEREOVOL \
pvol[0] += vol_l * chan->right_volume; \
pvol[1] += vol_r * chan->left_volume; \
pvol += 2;
#define SNDMIX_STOREFASTMONOVOL \
int v = vol * chan->right_volume; \
pvol[0] += v; \
pvol[1] += v; \
pvol += 2;
#define SNDMIX_RAMPMONOVOL \
left_ramp_volume += chan->left_ramp; \
right_ramp_volume += chan->right_ramp; \
pvol[0] += vol * (right_ramp_volume >> VOLUMERAMPPRECISION); \
pvol[1] += vol * (left_ramp_volume >> VOLUMERAMPPRECISION); \
pvol += 2;
#define SNDMIX_RAMPFASTMONOVOL \
right_ramp_volume += chan->right_ramp; \
int fastvol = vol * (right_ramp_volume >> VOLUMERAMPPRECISION); \
pvol[0] += fastvol; \
pvol[1] += fastvol; \
pvol += 2;
#define SNDMIX_RAMPSTEREOVOL \
left_ramp_volume += chan->left_ramp; \
right_ramp_volume += chan->right_ramp; \
pvol[0] += vol_l * (right_ramp_volume >> VOLUMERAMPPRECISION); \
pvol[1] += vol_r * (left_ramp_volume >> VOLUMERAMPPRECISION); \
pvol += 2;
///////////////////////////////////////////////////
// Resonant Filters
#define FILT_CLIP(i) CLAMP(i, -65536, 65534)
// Mono
#define MIX_BEGIN_FILTER \
int32_t fy1 = channel->filter_y1; \
int32_t fy2 = channel->filter_y2; \
int32_t ta;
#define MIX_END_FILTER \
channel->filter_y1 = fy1; \
channel->filter_y2 = fy2;
#define SNDMIX_PROCESSFILTER \
ta = (vol * chan->filter_a0 + FILT_CLIP(fy1) * chan->filter_b0 + FILT_CLIP(fy2) * chan->filter_b1 \
+ (1 << (FILTERPRECISION - 1))) >> FILTERPRECISION; \
fy2 = fy1; \
fy1 = ta; \
vol = ta;
// Stereo
#define MIX_BEGIN_STEREO_FILTER \
int32_t fy1 = channel->filter_y1; \
int32_t fy2 = channel->filter_y2; \
int32_t fy3 = channel->filter_y3; \
int32_t fy4 = channel->filter_y4; \
int32_t ta, tb;
#define MIX_END_STEREO_FILTER \
channel->filter_y1 = fy1; \
channel->filter_y2 = fy2; \
channel->filter_y3 = fy3; \
channel->filter_y4 = fy4; \
#define SNDMIX_PROCESSSTEREOFILTER \
ta = (vol_l * chan->filter_a0 + FILT_CLIP(fy1) * chan->filter_b0 + FILT_CLIP(fy2) * chan->filter_b1 \
+ (1 << (FILTERPRECISION - 1))) >> FILTERPRECISION; \
tb = (vol_r * chan->filter_a0 + FILT_CLIP(fy3) * chan->filter_b0 + FILT_CLIP(fy4) * chan->filter_b1 \
+ (1 << (FILTERPRECISION - 1))) >> FILTERPRECISION; \
fy2 = fy1; fy1 = ta; vol_l = ta; \
fy4 = fy3; fy3 = tb; vol_r = tb;
//////////////////////////////////////////////////////////
// Interfaces
typedef void(* mix_interface_t)(song_voice_t *, int *, int *);
#define BEGIN_MIX_INTERFACE(func) \
static void func(song_voice_t *channel, int *pbuffer, int *pbufmax) \
{ \
int position;
#define END_MIX_INTERFACE() \
SNDMIX_ENDSAMPLELOOP \
}
// Volume Ramps
#define BEGIN_RAMPMIX_INTERFACE(func) \
BEGIN_MIX_INTERFACE(func) \
int right_ramp_volume = channel->right_ramp_volume; \
int left_ramp_volume = channel->left_ramp_volume;
#define END_RAMPMIX_INTERFACE() \
SNDMIX_ENDSAMPLELOOP \
channel->right_ramp_volume = right_ramp_volume; \
channel->right_volume = right_ramp_volume >> VOLUMERAMPPRECISION; \
channel->left_ramp_volume = left_ramp_volume; \
channel->left_volume = left_ramp_volume >> VOLUMERAMPPRECISION; \
}
#define BEGIN_FASTRAMPMIX_INTERFACE(func) \
BEGIN_MIX_INTERFACE(func) \
int right_ramp_volume = channel->right_ramp_volume;
#define END_FASTRAMPMIX_INTERFACE() \
SNDMIX_ENDSAMPLELOOP \
channel->right_ramp_volume = right_ramp_volume; \
channel->left_ramp_volume = right_ramp_volume; \
channel->right_volume = right_ramp_volume >> VOLUMERAMPPRECISION; \
channel->left_volume = channel->right_volume; \
}
// Mono Resonant Filters
#define BEGIN_MIX_FLT_INTERFACE(func) \
BEGIN_MIX_INTERFACE(func) \
MIX_BEGIN_FILTER
#define END_MIX_FLT_INTERFACE() \
SNDMIX_ENDSAMPLELOOP \
MIX_END_FILTER \
}
#define BEGIN_RAMPMIX_FLT_INTERFACE(func) \
BEGIN_MIX_INTERFACE(func) \
int right_ramp_volume = channel->right_ramp_volume; \
int left_ramp_volume = channel->left_ramp_volume; \
MIX_BEGIN_FILTER
#define END_RAMPMIX_FLT_INTERFACE() \
SNDMIX_ENDSAMPLELOOP \
MIX_END_FILTER \
channel->right_ramp_volume = right_ramp_volume; \
channel->right_volume = right_ramp_volume >> VOLUMERAMPPRECISION; \
channel->left_ramp_volume = left_ramp_volume; \
channel->left_volume = left_ramp_volume >> VOLUMERAMPPRECISION; \
}
// Stereo Resonant Filters
#define BEGIN_MIX_STFLT_INTERFACE(func) \
BEGIN_MIX_INTERFACE(func) \
MIX_BEGIN_STEREO_FILTER
#define END_MIX_STFLT_INTERFACE() \
SNDMIX_ENDSAMPLELOOP \
MIX_END_STEREO_FILTER \
}
#define BEGIN_RAMPMIX_STFLT_INTERFACE(func) \
BEGIN_MIX_INTERFACE(func) \
int right_ramp_volume = channel->right_ramp_volume; \
int left_ramp_volume = channel->left_ramp_volume; \
MIX_BEGIN_STEREO_FILTER
#define END_RAMPMIX_STFLT_INTERFACE() \
SNDMIX_ENDSAMPLELOOP \
MIX_END_STEREO_FILTER \
channel->right_ramp_volume = right_ramp_volume; \
channel->right_volume = right_ramp_volume >> VOLUMERAMPPRECISION; \
channel->left_ramp_volume = left_ramp_volume; \
channel->left_volume = left_ramp_volume >> VOLUMERAMPPRECISION; \
}
#define BEGIN_RESAMPLE_INTERFACE(func, sampletype, numchannels) \
void func(sampletype *oldbuf, sampletype *newbuf, unsigned long oldlen, unsigned long newlen) \
{ \
unsigned long long position = 0; \
const sampletype *p = oldbuf; \
sampletype *pvol = newbuf; \
const sampletype *pbufmax = &newbuf[newlen* numchannels]; \
unsigned long long increment = (((unsigned long long)oldlen)<<16)/((unsigned long long)newlen); \
do {
#define END_RESAMPLE_INTERFACEMONO() \
*pvol = vol; \
pvol++; \
position += increment; \
} while (pvol < pbufmax); \
}
#define END_RESAMPLE_INTERFACESTEREO() \
pvol[0] = vol_l; \
pvol[1] = vol_r; \
pvol += 2; \
position += increment; \
} while (pvol < pbufmax); \
}
/////////////////////////////////////////////////////
// Mono samples functions
BEGIN_MIX_INTERFACE(Mono8BitMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETMONOVOL8NOIDO
SNDMIX_STOREMONOVOL
END_MIX_INTERFACE()
BEGIN_MIX_INTERFACE(Mono16BitMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETMONOVOL16NOIDO
SNDMIX_STOREMONOVOL
END_MIX_INTERFACE()
BEGIN_MIX_INTERFACE(Mono8BitLinearMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETMONOVOL8LINEAR
SNDMIX_STOREMONOVOL
END_MIX_INTERFACE()
BEGIN_MIX_INTERFACE(Mono16BitLinearMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETMONOVOL16LINEAR
SNDMIX_STOREMONOVOL
END_MIX_INTERFACE()
BEGIN_MIX_INTERFACE(Mono8BitSplineMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETMONOVOL8SPLINE
SNDMIX_STOREMONOVOL
END_MIX_INTERFACE()
BEGIN_MIX_INTERFACE(Mono16BitSplineMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETMONOVOL16SPLINE
SNDMIX_STOREMONOVOL
END_MIX_INTERFACE()
BEGIN_MIX_INTERFACE(Mono8BitFirFilterMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETMONOVOL8FIRFILTER
SNDMIX_STOREMONOVOL
END_MIX_INTERFACE()
BEGIN_MIX_INTERFACE(Mono16BitFirFilterMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETMONOVOL16FIRFILTER
SNDMIX_STOREMONOVOL
END_MIX_INTERFACE()
// Volume Ramps
BEGIN_RAMPMIX_INTERFACE(Mono8BitRampMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETMONOVOL8NOIDO
SNDMIX_RAMPMONOVOL
END_RAMPMIX_INTERFACE()
BEGIN_RAMPMIX_INTERFACE(Mono16BitRampMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETMONOVOL16NOIDO
SNDMIX_RAMPMONOVOL
END_RAMPMIX_INTERFACE()
BEGIN_RAMPMIX_INTERFACE(Mono8BitLinearRampMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETMONOVOL8LINEAR
SNDMIX_RAMPMONOVOL
END_RAMPMIX_INTERFACE()
BEGIN_RAMPMIX_INTERFACE(Mono16BitLinearRampMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETMONOVOL16LINEAR
SNDMIX_RAMPMONOVOL
END_RAMPMIX_INTERFACE()
BEGIN_RAMPMIX_INTERFACE(Mono8BitSplineRampMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETMONOVOL8SPLINE
SNDMIX_RAMPMONOVOL
END_RAMPMIX_INTERFACE()
BEGIN_RAMPMIX_INTERFACE(Mono16BitSplineRampMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETMONOVOL16SPLINE
SNDMIX_RAMPMONOVOL
END_RAMPMIX_INTERFACE()
BEGIN_RAMPMIX_INTERFACE(Mono8BitFirFilterRampMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETMONOVOL8FIRFILTER
SNDMIX_RAMPMONOVOL
END_RAMPMIX_INTERFACE()
BEGIN_RAMPMIX_INTERFACE(Mono16BitFirFilterRampMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETMONOVOL16FIRFILTER
SNDMIX_RAMPMONOVOL
END_RAMPMIX_INTERFACE()
//////////////////////////////////////////////////////
// Fast mono mix for leftvol=rightvol (1 less imul)
BEGIN_MIX_INTERFACE(FastMono8BitMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETMONOVOL8NOIDO
SNDMIX_STOREFASTMONOVOL
END_MIX_INTERFACE()
BEGIN_MIX_INTERFACE(FastMono16BitMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETMONOVOL16NOIDO
SNDMIX_STOREFASTMONOVOL
END_MIX_INTERFACE()
BEGIN_MIX_INTERFACE(FastMono8BitLinearMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETMONOVOL8LINEAR
SNDMIX_STOREFASTMONOVOL
END_MIX_INTERFACE()
BEGIN_MIX_INTERFACE(FastMono16BitLinearMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETMONOVOL16LINEAR
SNDMIX_STOREFASTMONOVOL
END_MIX_INTERFACE()
BEGIN_MIX_INTERFACE(FastMono8BitSplineMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETMONOVOL8SPLINE
SNDMIX_STOREFASTMONOVOL
END_MIX_INTERFACE()
BEGIN_MIX_INTERFACE(FastMono16BitSplineMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETMONOVOL16SPLINE
SNDMIX_STOREFASTMONOVOL
END_MIX_INTERFACE()
BEGIN_MIX_INTERFACE(FastMono8BitFirFilterMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETMONOVOL8FIRFILTER
SNDMIX_STOREFASTMONOVOL
END_MIX_INTERFACE()
BEGIN_MIX_INTERFACE(FastMono16BitFirFilterMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETMONOVOL16FIRFILTER
SNDMIX_STOREFASTMONOVOL
END_MIX_INTERFACE()
// Fast Ramps
BEGIN_FASTRAMPMIX_INTERFACE(FastMono8BitRampMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETMONOVOL8NOIDO
SNDMIX_RAMPFASTMONOVOL
END_FASTRAMPMIX_INTERFACE()
BEGIN_FASTRAMPMIX_INTERFACE(FastMono16BitRampMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETMONOVOL16NOIDO
SNDMIX_RAMPFASTMONOVOL
END_FASTRAMPMIX_INTERFACE()
BEGIN_FASTRAMPMIX_INTERFACE(FastMono8BitLinearRampMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETMONOVOL8LINEAR
SNDMIX_RAMPFASTMONOVOL
END_FASTRAMPMIX_INTERFACE()
BEGIN_FASTRAMPMIX_INTERFACE(FastMono16BitLinearRampMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETMONOVOL16LINEAR
SNDMIX_RAMPFASTMONOVOL
END_FASTRAMPMIX_INTERFACE()
BEGIN_FASTRAMPMIX_INTERFACE(FastMono8BitSplineRampMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETMONOVOL8SPLINE
SNDMIX_RAMPFASTMONOVOL
END_FASTRAMPMIX_INTERFACE()
BEGIN_FASTRAMPMIX_INTERFACE(FastMono16BitSplineRampMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETMONOVOL16SPLINE
SNDMIX_RAMPFASTMONOVOL
END_FASTRAMPMIX_INTERFACE()
BEGIN_FASTRAMPMIX_INTERFACE(FastMono8BitFirFilterRampMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETMONOVOL8FIRFILTER
SNDMIX_RAMPFASTMONOVOL
END_FASTRAMPMIX_INTERFACE()
BEGIN_FASTRAMPMIX_INTERFACE(FastMono16BitFirFilterRampMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETMONOVOL16FIRFILTER
SNDMIX_RAMPFASTMONOVOL
END_FASTRAMPMIX_INTERFACE()
//////////////////////////////////////////////////////
// Stereo samples
BEGIN_MIX_INTERFACE(Stereo8BitMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETSTEREOVOL8NOIDO
SNDMIX_STORESTEREOVOL
END_MIX_INTERFACE()
BEGIN_MIX_INTERFACE(Stereo16BitMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETSTEREOVOL16NOIDO
SNDMIX_STORESTEREOVOL
END_MIX_INTERFACE()
BEGIN_MIX_INTERFACE(Stereo8BitLinearMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETSTEREOVOL8LINEAR
SNDMIX_STORESTEREOVOL
END_MIX_INTERFACE()
BEGIN_MIX_INTERFACE(Stereo16BitLinearMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETSTEREOVOL16LINEAR
SNDMIX_STORESTEREOVOL
END_MIX_INTERFACE()
BEGIN_MIX_INTERFACE(Stereo8BitSplineMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETSTEREOVOL8SPLINE
SNDMIX_STORESTEREOVOL
END_MIX_INTERFACE()
BEGIN_MIX_INTERFACE(Stereo16BitSplineMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETSTEREOVOL16SPLINE
SNDMIX_STORESTEREOVOL
END_MIX_INTERFACE()
BEGIN_MIX_INTERFACE(Stereo8BitFirFilterMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETSTEREOVOL8FIRFILTER
SNDMIX_STORESTEREOVOL
END_MIX_INTERFACE()
BEGIN_MIX_INTERFACE(Stereo16BitFirFilterMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETSTEREOVOL16FIRFILTER
SNDMIX_STORESTEREOVOL
END_MIX_INTERFACE()
// Volume Ramps
BEGIN_RAMPMIX_INTERFACE(Stereo8BitRampMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETSTEREOVOL8NOIDO
SNDMIX_RAMPSTEREOVOL
END_RAMPMIX_INTERFACE()
BEGIN_RAMPMIX_INTERFACE(Stereo16BitRampMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETSTEREOVOL16NOIDO
SNDMIX_RAMPSTEREOVOL
END_RAMPMIX_INTERFACE()
BEGIN_RAMPMIX_INTERFACE(Stereo8BitLinearRampMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETSTEREOVOL8LINEAR
SNDMIX_RAMPSTEREOVOL
END_RAMPMIX_INTERFACE()
BEGIN_RAMPMIX_INTERFACE(Stereo16BitLinearRampMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETSTEREOVOL16LINEAR
SNDMIX_RAMPSTEREOVOL
END_RAMPMIX_INTERFACE()
BEGIN_RAMPMIX_INTERFACE(Stereo8BitSplineRampMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETSTEREOVOL8SPLINE
SNDMIX_RAMPSTEREOVOL
END_RAMPMIX_INTERFACE()
BEGIN_RAMPMIX_INTERFACE(Stereo16BitSplineRampMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETSTEREOVOL16SPLINE
SNDMIX_RAMPSTEREOVOL
END_RAMPMIX_INTERFACE()
BEGIN_RAMPMIX_INTERFACE(Stereo8BitFirFilterRampMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETSTEREOVOL8FIRFILTER
SNDMIX_RAMPSTEREOVOL
END_RAMPMIX_INTERFACE()
BEGIN_RAMPMIX_INTERFACE(Stereo16BitFirFilterRampMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETSTEREOVOL16FIRFILTER
SNDMIX_RAMPSTEREOVOL
END_RAMPMIX_INTERFACE()
//////////////////////////////////////////////////////
// Resonant Filter Mix
// Mono Filter Mix
BEGIN_MIX_FLT_INTERFACE(FilterMono8BitMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETMONOVOL8NOIDO
SNDMIX_PROCESSFILTER
SNDMIX_STOREMONOVOL
END_MIX_FLT_INTERFACE()
BEGIN_MIX_FLT_INTERFACE(FilterMono16BitMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETMONOVOL16NOIDO
SNDMIX_PROCESSFILTER
SNDMIX_STOREMONOVOL
END_MIX_FLT_INTERFACE()
BEGIN_MIX_FLT_INTERFACE(FilterMono8BitLinearMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETMONOVOL8LINEAR
SNDMIX_PROCESSFILTER
SNDMIX_STOREMONOVOL
END_MIX_FLT_INTERFACE()
BEGIN_MIX_FLT_INTERFACE(FilterMono16BitLinearMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETMONOVOL16LINEAR
SNDMIX_PROCESSFILTER
SNDMIX_STOREMONOVOL
END_MIX_FLT_INTERFACE()
BEGIN_MIX_FLT_INTERFACE(FilterMono8BitSplineMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETMONOVOL8SPLINE
SNDMIX_PROCESSFILTER
SNDMIX_STOREMONOVOL
END_MIX_FLT_INTERFACE()
BEGIN_MIX_FLT_INTERFACE(FilterMono16BitSplineMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETMONOVOL16SPLINE
SNDMIX_PROCESSFILTER
SNDMIX_STOREMONOVOL
END_MIX_FLT_INTERFACE()
BEGIN_MIX_FLT_INTERFACE(FilterMono8BitFirFilterMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETMONOVOL8FIRFILTER
SNDMIX_PROCESSFILTER
SNDMIX_STOREMONOVOL
END_MIX_FLT_INTERFACE()
BEGIN_MIX_FLT_INTERFACE(FilterMono16BitFirFilterMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETMONOVOL16FIRFILTER
SNDMIX_PROCESSFILTER
SNDMIX_STOREMONOVOL
END_MIX_FLT_INTERFACE()
// Filter + Ramp
BEGIN_RAMPMIX_FLT_INTERFACE(FilterMono8BitRampMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETMONOVOL8NOIDO
SNDMIX_PROCESSFILTER
SNDMIX_RAMPMONOVOL
END_RAMPMIX_FLT_INTERFACE()
BEGIN_RAMPMIX_FLT_INTERFACE(FilterMono16BitRampMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETMONOVOL16NOIDO
SNDMIX_PROCESSFILTER
SNDMIX_RAMPMONOVOL
END_RAMPMIX_FLT_INTERFACE()
BEGIN_RAMPMIX_FLT_INTERFACE(FilterMono8BitLinearRampMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETMONOVOL8LINEAR
SNDMIX_PROCESSFILTER
SNDMIX_RAMPMONOVOL
END_RAMPMIX_FLT_INTERFACE()
BEGIN_RAMPMIX_FLT_INTERFACE(FilterMono16BitLinearRampMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETMONOVOL16LINEAR
SNDMIX_PROCESSFILTER
SNDMIX_RAMPMONOVOL
END_RAMPMIX_FLT_INTERFACE()
BEGIN_RAMPMIX_FLT_INTERFACE(FilterMono8BitSplineRampMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETMONOVOL8SPLINE
SNDMIX_PROCESSFILTER
SNDMIX_RAMPMONOVOL
END_RAMPMIX_FLT_INTERFACE()
BEGIN_RAMPMIX_FLT_INTERFACE(FilterMono16BitSplineRampMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETMONOVOL16SPLINE
SNDMIX_PROCESSFILTER
SNDMIX_RAMPMONOVOL
END_RAMPMIX_FLT_INTERFACE()
BEGIN_RAMPMIX_FLT_INTERFACE(FilterMono8BitFirFilterRampMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETMONOVOL8FIRFILTER
SNDMIX_PROCESSFILTER
SNDMIX_RAMPMONOVOL
END_RAMPMIX_FLT_INTERFACE()
BEGIN_RAMPMIX_FLT_INTERFACE(FilterMono16BitFirFilterRampMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETMONOVOL16FIRFILTER
SNDMIX_PROCESSFILTER
SNDMIX_RAMPMONOVOL
END_RAMPMIX_FLT_INTERFACE()
// Stereo Filter Mix
BEGIN_MIX_STFLT_INTERFACE(FilterStereo8BitMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETSTEREOVOL8NOIDO
SNDMIX_PROCESSSTEREOFILTER
SNDMIX_STORESTEREOVOL
END_MIX_STFLT_INTERFACE()
BEGIN_MIX_STFLT_INTERFACE(FilterStereo16BitMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETSTEREOVOL16NOIDO
SNDMIX_PROCESSSTEREOFILTER
SNDMIX_STORESTEREOVOL
END_MIX_STFLT_INTERFACE()
BEGIN_MIX_STFLT_INTERFACE(FilterStereo8BitLinearMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETSTEREOVOL8LINEAR
SNDMIX_PROCESSSTEREOFILTER
SNDMIX_STORESTEREOVOL
END_MIX_STFLT_INTERFACE()
BEGIN_MIX_STFLT_INTERFACE(FilterStereo16BitLinearMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETSTEREOVOL16LINEAR
SNDMIX_PROCESSSTEREOFILTER
SNDMIX_STORESTEREOVOL
END_MIX_STFLT_INTERFACE()
BEGIN_MIX_STFLT_INTERFACE(FilterStereo8BitSplineMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETSTEREOVOL8SPLINE
SNDMIX_PROCESSSTEREOFILTER
SNDMIX_STORESTEREOVOL
END_MIX_STFLT_INTERFACE()
BEGIN_MIX_STFLT_INTERFACE(FilterStereo16BitSplineMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETSTEREOVOL16SPLINE
SNDMIX_PROCESSSTEREOFILTER
SNDMIX_STORESTEREOVOL
END_MIX_STFLT_INTERFACE()
BEGIN_MIX_STFLT_INTERFACE(FilterStereo8BitFirFilterMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETSTEREOVOL8FIRFILTER
SNDMIX_PROCESSSTEREOFILTER
SNDMIX_STORESTEREOVOL
END_MIX_STFLT_INTERFACE()
BEGIN_MIX_STFLT_INTERFACE(FilterStereo16BitFirFilterMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETSTEREOVOL16FIRFILTER
SNDMIX_PROCESSSTEREOFILTER
SNDMIX_STORESTEREOVOL
END_MIX_STFLT_INTERFACE()
// Stereo Filter + Ramp
BEGIN_RAMPMIX_STFLT_INTERFACE(FilterStereo8BitRampMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETSTEREOVOL8NOIDO
SNDMIX_PROCESSSTEREOFILTER
SNDMIX_RAMPSTEREOVOL
END_RAMPMIX_STFLT_INTERFACE()
BEGIN_RAMPMIX_STFLT_INTERFACE(FilterStereo16BitRampMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETSTEREOVOL16NOIDO
SNDMIX_PROCESSSTEREOFILTER
SNDMIX_RAMPSTEREOVOL
END_RAMPMIX_STFLT_INTERFACE()
BEGIN_RAMPMIX_STFLT_INTERFACE(FilterStereo8BitLinearRampMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETSTEREOVOL8LINEAR
SNDMIX_PROCESSSTEREOFILTER
SNDMIX_RAMPSTEREOVOL
END_RAMPMIX_STFLT_INTERFACE()
BEGIN_RAMPMIX_STFLT_INTERFACE(FilterStereo16BitLinearRampMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETSTEREOVOL16LINEAR
SNDMIX_PROCESSSTEREOFILTER
SNDMIX_RAMPSTEREOVOL
END_RAMPMIX_STFLT_INTERFACE()
BEGIN_RAMPMIX_STFLT_INTERFACE(FilterStereo8BitSplineRampMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETSTEREOVOL8SPLINE
SNDMIX_PROCESSSTEREOFILTER
SNDMIX_RAMPSTEREOVOL
END_RAMPMIX_STFLT_INTERFACE()
BEGIN_RAMPMIX_STFLT_INTERFACE(FilterStereo16BitSplineRampMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETSTEREOVOL16SPLINE
SNDMIX_PROCESSSTEREOFILTER
SNDMIX_RAMPSTEREOVOL
END_RAMPMIX_STFLT_INTERFACE()
BEGIN_RAMPMIX_STFLT_INTERFACE(FilterStereo8BitFirFilterRampMix)
SNDMIX_BEGINSAMPLELOOP8
SNDMIX_GETSTEREOVOL8FIRFILTER
SNDMIX_PROCESSSTEREOFILTER
SNDMIX_RAMPSTEREOVOL
END_RAMPMIX_STFLT_INTERFACE()
BEGIN_RAMPMIX_STFLT_INTERFACE(FilterStereo16BitFirFilterRampMix)
SNDMIX_BEGINSAMPLELOOP16
SNDMIX_GETSTEREOVOL16FIRFILTER
SNDMIX_PROCESSSTEREOFILTER
SNDMIX_RAMPSTEREOVOL
END_RAMPMIX_STFLT_INTERFACE()
// Public resampling Methods (
BEGIN_RESAMPLE_INTERFACE(ResampleMono8BitFirFilter, signed char, 1)
SNDMIX_GETMONOVOL8FIRFILTER
vol >>= (WFIR_16BITSHIFT-WFIR_8SHIFT); //This is used to compensate, since the code assumes that it always outputs to 16bits
vol = CLAMP(vol,-128,127);
END_RESAMPLE_INTERFACEMONO()
BEGIN_RESAMPLE_INTERFACE(ResampleMono16BitFirFilter, signed short, 1)
SNDMIX_GETMONOVOL16FIRFILTER
vol = CLAMP(vol,-32768,32767);
END_RESAMPLE_INTERFACEMONO()
BEGIN_RESAMPLE_INTERFACE(ResampleStereo8BitFirFilter, signed char, 2)
SNDMIX_GETSTEREOVOL8FIRFILTER
vol_l >>= (WFIR_16BITSHIFT-WFIR_8SHIFT); //This is used to compensate, since the code assumes that it always outputs to 16bits
vol_r >>= (WFIR_16BITSHIFT-WFIR_8SHIFT); //This is used to compensate, since the code assumes that it always outputs to 16bits
vol_l = CLAMP(vol_l,-128,127);
vol_r = CLAMP(vol_r,-128,127);
END_RESAMPLE_INTERFACESTEREO()
BEGIN_RESAMPLE_INTERFACE(ResampleStereo16BitFirFilter, signed short, 2)
SNDMIX_GETSTEREOVOL16FIRFILTER
vol_l = CLAMP(vol_l,-32768,32767);
vol_r = CLAMP(vol_r,-32768,32767);
END_RESAMPLE_INTERFACESTEREO()
/////////////////////////////////////////////////////////////////////////////////////
//
// Mix function tables
//
//
// Index is as follow:
// [b1-b0] format (8-bit-mono, 16-bit-mono, 8-bit-stereo, 16-bit-stereo)
// [b2] ramp
// [b3] filter
// [b5-b4] src type
//
#define MIXNDX_16BIT 0x01
#define MIXNDX_STEREO 0x02
#define MIXNDX_RAMP 0x04
#define MIXNDX_FILTER 0x08
#define MIXNDX_LINEARSRC 0x10
#define MIXNDX_SPLINESRC 0x20
#define MIXNDX_FIRSRC 0x30
// mix_(bits)(m/s)[_filt]_(interp/spline/fir/whatever)[_ramp]
static const mix_interface_t mix_functions[2 * 2 * 16] = {
// No SRC
Mono8BitMix, Mono16BitMix,
Stereo8BitMix, Stereo16BitMix,
Mono8BitRampMix, Mono16BitRampMix,
Stereo8BitRampMix, Stereo16BitRampMix,
// No SRC, Filter
FilterMono8BitMix, FilterMono16BitMix,
FilterStereo8BitMix, FilterStereo16BitMix,
FilterMono8BitRampMix, FilterMono16BitRampMix,
FilterStereo8BitRampMix, FilterStereo16BitRampMix,
// Linear SRC
Mono8BitLinearMix, Mono16BitLinearMix,
Stereo8BitLinearMix, Stereo16BitLinearMix,
Mono8BitLinearRampMix, Mono16BitLinearRampMix,
Stereo8BitLinearRampMix, Stereo16BitLinearRampMix,
// Linear SRC, Filter
FilterMono8BitLinearMix, FilterMono16BitLinearMix,
FilterStereo8BitLinearMix, FilterStereo16BitLinearMix,
FilterMono8BitLinearRampMix, FilterMono16BitLinearRampMix,
FilterStereo8BitLinearRampMix, FilterStereo16BitLinearRampMix,
// Spline SRC
Mono8BitSplineMix, Mono16BitSplineMix,
Stereo8BitSplineMix, Stereo16BitSplineMix,
Mono8BitSplineRampMix, Mono16BitSplineRampMix,
Stereo8BitSplineRampMix, Stereo16BitSplineRampMix,
// Spline SRC, Filter
FilterMono8BitSplineMix, FilterMono16BitSplineMix,
FilterStereo8BitSplineMix, FilterStereo16BitSplineMix,
FilterMono8BitSplineRampMix, FilterMono16BitSplineRampMix,
FilterStereo8BitSplineRampMix, FilterStereo16BitSplineRampMix,
// FirFilter SRC
Mono8BitFirFilterMix, Mono16BitFirFilterMix,
Stereo8BitFirFilterMix, Stereo16BitFirFilterMix,
Mono8BitFirFilterRampMix, Mono16BitFirFilterRampMix,
Stereo8BitFirFilterRampMix, Stereo16BitFirFilterRampMix,
// FirFilter SRC, Filter
FilterMono8BitFirFilterMix, FilterMono16BitFirFilterMix,
FilterStereo8BitFirFilterMix, FilterStereo16BitFirFilterMix,
FilterMono8BitFirFilterRampMix, FilterMono16BitFirFilterRampMix,
FilterStereo8BitFirFilterRampMix, FilterStereo16BitFirFilterRampMix
};
static const mix_interface_t fastmix_functions[2 * 2 * 16] = {
// No SRC
FastMono8BitMix, FastMono16BitMix,
Stereo8BitMix, Stereo16BitMix,
FastMono8BitRampMix, FastMono16BitRampMix,
Stereo8BitRampMix, Stereo16BitRampMix,
// No SRC, Filter
FilterMono8BitMix, FilterMono16BitMix,
FilterStereo8BitMix, FilterStereo16BitMix,
FilterMono8BitRampMix, FilterMono16BitRampMix,
FilterStereo8BitRampMix, FilterStereo16BitRampMix,
// Linear SRC
FastMono8BitLinearMix, FastMono16BitLinearMix,
Stereo8BitLinearMix, Stereo16BitLinearMix,
FastMono8BitLinearRampMix, FastMono16BitLinearRampMix,
Stereo8BitLinearRampMix, Stereo16BitLinearRampMix,
// Linear SRC, Filter
FilterMono8BitLinearMix, FilterMono16BitLinearMix,
FilterStereo8BitLinearMix, FilterStereo16BitLinearMix,
FilterMono8BitLinearRampMix, FilterMono16BitLinearRampMix,
FilterStereo8BitLinearRampMix, FilterStereo16BitLinearRampMix,
// Spline SRC
FastMono8BitSplineMix, FastMono16BitSplineMix,
Stereo8BitSplineMix, Stereo16BitSplineMix,
FastMono8BitSplineRampMix, FastMono16BitSplineRampMix,
Stereo8BitSplineRampMix, Stereo16BitSplineRampMix,
// Spline SRC, Filter
FilterMono8BitSplineMix, FilterMono16BitSplineMix,
FilterStereo8BitSplineMix, FilterStereo16BitSplineMix,
FilterMono8BitSplineRampMix, FilterMono16BitSplineRampMix,
FilterStereo8BitSplineRampMix, FilterStereo16BitSplineRampMix,
// FirFilter SRC
FastMono8BitFirFilterMix, FastMono16BitFirFilterMix,
Stereo8BitFirFilterMix, Stereo16BitFirFilterMix,
FastMono8BitFirFilterRampMix, FastMono16BitFirFilterRampMix,
Stereo8BitFirFilterRampMix, Stereo16BitFirFilterRampMix,
// FirFilter SRC, Filter
FilterMono8BitFirFilterMix, FilterMono16BitFirFilterMix,
FilterStereo8BitFirFilterMix, FilterStereo16BitFirFilterMix,
FilterMono8BitFirFilterRampMix, FilterMono16BitFirFilterRampMix,
FilterStereo8BitFirFilterRampMix, FilterStereo16BitFirFilterRampMix,
};
static int get_sample_count(song_voice_t *chan, int samples)
{
int loop_start = (chan->flags & CHN_LOOP) ? chan->loop_start : 0;
int increment = chan->increment;
if (samples <= 0 || !increment || !chan->length)
return 0;
// Under zero ?
if ((int) chan->position < loop_start) {
if (increment < 0) {
// Invert loop for bidi loops
int delta = ((loop_start - chan->position) << 16) - (chan->position_frac & 0xFFFF);
chan->position = loop_start + (delta >> 16);
chan->position_frac = delta & 0xFFFF;
if ((int) chan->position < loop_start ||
chan->position >= (loop_start + chan->length) / 2) {
chan->position = loop_start;
chan->position_frac = 0;
}
increment = -increment;
chan->increment = increment;
// go forward
chan->flags &= ~(CHN_PINGPONGFLAG);
if ((!(chan->flags & CHN_LOOP)) ||
(chan->position >= chan->length)) {
chan->position = chan->length;
chan->position_frac = 0;
return 0;
}
}
else {
// We probably didn't hit the loop end yet (first loop), so we do nothing
if ((int) chan->position < 0)
chan->position = 0;
}
}
// Past the end
else if (chan->position >= chan->length) {
// not looping -> stop this channel
if (!(chan->flags & CHN_LOOP))
return 0;
if (chan->flags & CHN_PINGPONGLOOP) {
// Invert loop
if (increment > 0) {
increment = -increment;
chan->increment = increment;
}
chan->flags |= CHN_PINGPONGFLAG;
// adjust loop position
int delta_hi = (chan->position - chan->length);
int delta_lo = 0x10000 - (chan->position_frac & 0xFFFF);
chan->position = chan->length - delta_hi - (delta_lo >> 16);
chan->position_frac = delta_lo & 0xFFFF;
if (chan->position <= chan->loop_start || chan->position >= chan->length)
chan->position = chan->length - PINGPONG_OFFSET;
}
else {
// This is a bug
if (increment < 0) {
increment = -increment;
chan->increment = increment;
}
// Restart at loop start
chan->position += loop_start - chan->length;
if ((int) chan->position < loop_start)
chan->position = chan->loop_start;
}
}
int position = chan->position;
// too big increment, and/or too small loop length
if (position < loop_start) {
if (position < 0 || increment < 0)
return 0;
}
if (position < 0 || position >= (int) chan->length)
return 0;
int position_frac = (unsigned short) chan->position_frac,
sample_count = samples;
if (increment < 0) {
int inv = -increment;
int maxsamples = 16384 / ((inv >> 16) + 1);
if (maxsamples < 2)
maxsamples = 2;
if (samples > maxsamples)
samples = maxsamples;
int delta_hi = (inv >> 16) * (samples - 1);
int delta_lo = (inv & 0xffff) * (samples - 1);
int pos_dest = position - delta_hi + ((position_frac - delta_lo) >> 16);
if (pos_dest < loop_start) {
sample_count =
(unsigned int) (((((long long) position -
loop_start) << 16) + position_frac -
1) / inv) + 1;
}
}
else {
int maxsamples = 16384 / ((increment >> 16) + 1);
if (maxsamples < 2)
maxsamples = 2;
if (samples > maxsamples)
samples = maxsamples;
int delta_hi = (increment >> 16) * (samples - 1);
int delta_lo = (increment & 0xffff) * (samples - 1);
int pos_dest = position + delta_hi + ((position_frac + delta_lo) >> 16);
if (pos_dest >= (int) chan->length) {
sample_count = (unsigned int)
(((((long long) chan->length - position) << 16) - position_frac - 1) / increment) + 1;
}
}
if (sample_count <= 1)
return 1;
else if (sample_count > samples)
return samples;
return sample_count;
}
unsigned int csf_create_stereo_mix(song_t *csf, int count)
{
int* ofsl, *ofsr;
unsigned int nchused, nchmixed;
if (!count)
return 0;
nchused = nchmixed = 0;
// yuck
if (csf->multi_write)
for (unsigned int nchan = 0; nchan < MAX_CHANNELS; nchan++)
memset(csf->multi_write[nchan].buffer, 0, sizeof(csf->multi_write[nchan].buffer));
for (unsigned int nchan = 0; nchan < csf->num_voices; nchan++) {
const mix_interface_t *mix_func_table;
song_voice_t *const channel = &csf->voices[csf->voice_mix[nchan]];
unsigned int flags;
unsigned int nrampsamples;
int smpcount;
int nsamples;
int *pbuffer;
if (!channel->current_sample_data)
continue;
ofsr = &g_dry_rofs_vol;
ofsl = &g_dry_lofs_vol;
flags = 0;
if (channel->flags & CHN_16BIT)
flags |= MIXNDX_16BIT;
if (channel->flags & CHN_STEREO)
flags |= MIXNDX_STEREO;
if (channel->flags & CHN_FILTER)
flags |= MIXNDX_FILTER;
if (!(channel->flags & CHN_NOIDO) &&
!(csf->mix_flags & SNDMIX_NORESAMPLING)) {
// use hq-fir mixer?
if ((csf->mix_flags & (SNDMIX_HQRESAMPLER | SNDMIX_ULTRAHQSRCMODE))
== (SNDMIX_HQRESAMPLER | SNDMIX_ULTRAHQSRCMODE))
flags |= MIXNDX_FIRSRC;
else if (csf->mix_flags & SNDMIX_HQRESAMPLER)
flags |= MIXNDX_SPLINESRC;
else
flags |= MIXNDX_LINEARSRC; // use
}
if ((flags < 0x40) &&
(channel->left_volume == channel->right_volume) &&
((!channel->ramp_length) ||
(channel->left_ramp == channel->right_ramp))) {
mix_func_table = fastmix_functions;
} else {
mix_func_table = mix_functions;
}
nsamples = count;
if (csf->multi_write) {
int master = (csf->voice_mix[nchan] < MAX_CHANNELS)
? csf->voice_mix[nchan]
: (channel->master_channel - 1);
pbuffer = csf->multi_write[master].buffer;
csf->multi_write[master].used = 1;
} else {
pbuffer = csf->mix_buffer;
}
nchused++;
////////////////////////////////////////////////////
unsigned int naddmix = 0;
do {
nrampsamples = nsamples;
if (channel->ramp_length > 0) {
if ((int) nrampsamples > channel->ramp_length)
nrampsamples = channel->ramp_length;
}
smpcount = 1;
/* Figure out the number of remaining samples,
* unless we're in AdLib or MIDI mode (to prevent
* artificial KeyOffs)
*/
if (!(channel->flags & CHN_ADLIB)) {
smpcount = get_sample_count(channel, nrampsamples);
}
if (smpcount <= 0) {
// Stopping the channel
channel->current_sample_data = NULL;
channel->length = 0;
channel->position = 0;
channel->position_frac = 0;
channel->ramp_length = 0;
end_channel_ofs(channel, pbuffer, nsamples);
*ofsr += channel->rofs;
*ofsl += channel->lofs;
channel->rofs = channel->lofs = 0;
channel->flags &= ~CHN_PINGPONGFLAG;
break;
}
// Should we mix this channel ?
if ((nchmixed >= max_voices && !(csf->mix_flags & SNDMIX_DIRECTTODISK))
|| (!channel->ramp_length && !(channel->left_volume | channel->right_volume))) {
int delta = (channel->increment * (int) smpcount) + (int) channel->position_frac;
channel->position_frac = delta & 0xFFFF;
channel->position += (delta >> 16);
channel->rofs = channel->lofs = 0;
pbuffer += smpcount * 2;
} else {
// Do mixing
/* Mix the stream, unless we're in AdLib mode */
if (!(channel->flags & CHN_ADLIB)) {
// Choose function for mixing
mix_interface_t mix_func;
mix_func = channel->ramp_length
? mix_func_table[flags | MIXNDX_RAMP]
: mix_func_table[flags];
int *pbufmax = pbuffer + (smpcount * 2);
channel->rofs = -*(pbufmax - 2);
channel->lofs = -*(pbufmax - 1);
mix_func(channel, pbuffer, pbufmax);
channel->rofs += *(pbufmax - 2);
channel->lofs += *(pbufmax - 1);
pbuffer = pbufmax;
naddmix = 1;
}
}
nsamples -= smpcount;
if (channel->ramp_length) {
channel->ramp_length -= smpcount;
if (channel->ramp_length <= 0) {
channel->ramp_length = 0;
channel->right_volume = channel->right_volume_new;
channel->left_volume = channel->left_volume_new;
channel->right_ramp = channel->left_ramp = 0;
if ((channel->flags & CHN_NOTEFADE)
&& (!(channel->fadeout_volume))) {
channel->length = 0;
channel->current_sample_data = NULL;
}
}
}
} while (nsamples > 0);
nchmixed += naddmix;
}
if (csf->multi_write) {
/* mix all adlib onto track one */
Fmdrv_MixTo(csf->multi_write[0].buffer, count);
} else {
Fmdrv_MixTo(csf->mix_buffer, count);
}
return nchused;
}
|