CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/Core/HW/SasReverb.cpp
Views: 1401
1
// Copyright (c) 2015- PPSSPP Project.
2
3
// This program is free software: you can redistribute it and/or modify
4
// it under the terms of the GNU General Public License as published by
5
// the Free Software Foundation, version 2.0 or later versions.
6
7
// This program is distributed in the hope that it will be useful,
8
// but WITHOUT ANY WARRANTY; without even the implied warranty of
9
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
// GNU General Public License 2.0 for more details.
11
12
// A copy of the GPL 2.0 should have been included with the program.
13
// If not, see http://www.gnu.org/licenses/
14
15
// Official git repository and contact information can be found at
16
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
17
18
#include <cstdint>
19
#include <cstring>
20
21
#include "Common/Math/math_util.h"
22
#include "Core/Config.h"
23
#include "Core/HW/SasReverb.h"
24
#include "Core/Util/AudioFormat.h"
25
26
// This is under the assumption that the reverb used in Sas is the same as the PSX SPU reverb.
27
28
// Source: http://problemkaputt.de/psx-spx.htm#spureverbformula
29
30
struct SasReverbData {
31
const char *name;
32
int32_t size;
33
34
int16_t dAPF1;
35
int16_t dAPF2;
36
int16_t vIIR;
37
int16_t vCOMB1;
38
int16_t vCOMB2;
39
int16_t vCOMB3;
40
int16_t vCOMB4;
41
int16_t vWALL;
42
43
int16_t vAPF1;
44
int16_t vAPF2;
45
int16_t mLSAME;
46
int16_t mRSAME;
47
int16_t mLCOMB1;
48
int16_t mRCOMB1;
49
int16_t mLCOMB2;
50
int16_t mRCOMB2;
51
52
int16_t dLSAME;
53
int16_t dRSAME;
54
int16_t mLDIFF;
55
int16_t mRDIFF;
56
int16_t mLCOMB3;
57
int16_t mRCOMB3;
58
int16_t mLCOMB4;
59
int16_t mRCOMB4;
60
61
int16_t dLDIFF;
62
int16_t dRDIFF;
63
int16_t mLAPF1;
64
int16_t mRAPF1;
65
int16_t mLAPF2;
66
int16_t mRAPF2;
67
68
// These aren't used for anything else than 1.0 in any of the presets so let's drop them.
69
// int16_t vLIN;
70
// int16_t vRIN;
71
};
72
73
static const SasReverbData presets[10] = {
74
{
75
"Room",
76
0x26C0,
77
0x007D,0x005B,0x6D80,0x54B8,(int16_t)0xBED0,0x0000,0x0000,(int16_t)0xBA80,
78
0x5800,0x5300,0x04D6,0x0333,0x03F0,0x0227,0x0374,0x01EF,
79
0x0334,0x01B5,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
80
0x0000,0x0000,0x01B4,0x0136,0x00B8,0x005C, //(int16_t)0x8000,(int16_t)0x8000,
81
},
82
{
83
"Studio Small",
84
0x1F40,
85
0x0033,0x0025,0x70F0,0x4FA8,(int16_t)0xBCE0,0x4410,(int16_t)0xC0F0,(int16_t)0x9C00,
86
0x5280,0x4EC0,0x03E4,0x031B,0x03A4,0x02AF,0x0372,0x0266,
87
0x031C,0x025D,0x025C,0x018E,0x022F,0x0135,0x01D2,0x00B7,
88
0x018F,0x00B5,0x00B4,0x0080,0x004C,0x0026, //(int16_t)0x8000,(int16_t)0x8000,
89
},
90
91
{
92
"Studio Medium",
93
0x4840,
94
0x00B1,0x007F,0x70F0,0x4FA8,(int16_t)0xBCE0,0x4510,(int16_t)0xBEF0,(int16_t)0xB4C0,
95
0x5280,0x4EC0,0x0904,0x076B,0x0824,0x065F,0x07A2,0x0616,
96
0x076C,0x05ED,0x05EC,0x042E,0x050F,0x0305,0x0462,0x02B7,
97
0x042F,0x0265,0x0264,0x01B2,0x0100,0x0080, //(int16_t)0x8000,(int16_t)0x8000,
98
},
99
100
// Studio Large(size = 6FE0h bytes)
101
{
102
"Studio Large",
103
0x6FE0,
104
0x00E3,0x00A9,0x6F60,0x4FA8,(int16_t)0xBCE0,0x4510,(int16_t)0xBEF0,(int16_t)0xA680,
105
0x5680,0x52C0,0x0DFB,0x0B58,0x0D09,0x0A3C,0x0BD9,0x0973,
106
0x0B59,0x08DA,0x08D9,0x05E9,0x07EC,0x04B0,0x06EF,0x03D2,
107
0x05EA,0x031D,0x031C,0x0238,0x0154,0x00AA, //(int16_t)0x8000,(int16_t)0x8000,
108
},
109
110
{
111
"Hall",
112
0xADE0,
113
0x01A5,0x0139,0x6000,0x5000,0x4C00,(int16_t)0xB800,(int16_t)0xBC00,(int16_t)0xC000,
114
0x6000,0x5C00,0x15BA,0x11BB,0x14C2,0x10BD,0x11BC,0x0DC1,
115
0x11C0,0x0DC3,0x0DC0,0x09C1,0x0BC4,0x07C1,0x0A00,0x06CD,
116
0x09C2,0x05C1,0x05C0,0x041A,0x0274,0x013A, //(int16_t)0x8000,(int16_t)0x8000,
117
},
118
119
{
120
"Space Echo",
121
0xF6C0,
122
0x033D,0x0231,0x7E00,0x5000,(int16_t)0xB400,(int16_t)0xB000,0x4C00,(int16_t)0xB000,
123
0x6000,0x5400,0x1ED6,0x1A31,0x1D14,0x183B,0x1BC2,0x16B2,
124
0x1A32,0x15EF,0x15EE,0x1055,0x1334,0x0F2D,0x11F6,0x0C5D,
125
0x1056,0x0AE1,0x0AE0,0x07A2,0x0464,0x0232, //(int16_t)0x8000,(int16_t)0x8000,
126
},
127
128
{
129
"Echo (almost infinite)",
130
0x18040,
131
0x0001,0x0001,0x7FFF,0x7FFF,0x0000,0x0000,0x0000,(int16_t)0xC080,
132
0x0000,0x0000,0x1FFF,0x0FFF,0x1005,0x0005,0x0000,0x0000,
133
0x1005,0x0005,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
134
0x0000,0x0000,0x1004,0x1002,0x0004,0x0002, //(int16_t)0x8000,(int16_t)0x8000,
135
},
136
137
{
138
"Delay (one - shot echo)",
139
0x18040,
140
0x0001,0x0001,0x7FFF,0x7FFF,0x0000,0x0000,0x0000,0x0000,
141
0x0000,0x0000,0x1FFF,0x0FFF,0x1005,0x0005,0x0000,0x0000,
142
0x1005,0x0005,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
143
0x0000,0x0000,0x1004,0x1002,0x0004,0x0002, //(int16_t)0x8000,(int16_t)0x8000,
144
},
145
146
{
147
"Half Echo",
148
0x3C00,
149
0x0017,0x0013,0x70F0,0x4FA8,(int16_t)0xBCE0,0x4510,(int16_t)0xBEF0,(int16_t)0x8500,
150
0x5F80,0x54C0,0x0371,0x02AF,0x02E5,0x01DF,0x02B0,0x01D7,
151
0x0358,0x026A,0x01D6,0x011E,0x012D,0x00B1,0x011F,0x0059,
152
0x01A0,0x00E3,0x0058,0x0040,0x0028,0x0014, //(int16_t)0x8000,(int16_t)0x8000,
153
},
154
};
155
156
SasReverb::SasReverb() : preset_(-1), pos_(0) {
157
workspace_ = new int16_t[BUFSIZE];
158
}
159
160
SasReverb::~SasReverb() {
161
delete[] workspace_;
162
}
163
164
const char *SasReverb::GetPresetName(int preset) {
165
if (preset == -1) {
166
return "Off";
167
}
168
return presets[preset].name;
169
}
170
171
void SasReverb::SetPreset(int preset) {
172
if (preset < (int)ARRAY_SIZE(presets))
173
preset_ = preset;
174
if (preset_ != -1) {
175
pos_ = BUFSIZE - presets[preset_].size;
176
memset(workspace_, 0, sizeof(int16_t) * BUFSIZE);
177
} else {
178
pos_ = 0;
179
}
180
}
181
182
// Wraps around the upper part of a buffer.
183
template<int bufsize>
184
class BufferWrapper {
185
public:
186
BufferWrapper(int16_t *buffer, int position, int usedSize) : buf_(buffer), pos_(position), end_(bufsize), base_(bufsize - usedSize), size_(usedSize) {}
187
int16_t &operator [](int index) {
188
int addr = pos_ + index;
189
if (addr >= end_) { addr -= size_; }
190
if (addr < base_) { addr += size_; }
191
return buf_[addr];
192
}
193
194
int GetPosition() { return pos_; }
195
void Next() {
196
pos_++;
197
if (pos_ >= end_) {
198
pos_ -= size_;
199
}
200
}
201
202
private:
203
int16_t *buf_;
204
int pos_;
205
int end_;
206
int base_;
207
int size_;
208
};
209
210
void SasReverb::ProcessReverb(int16_t *output, const int16_t *input, size_t inputSize, uint16_t volLeft, uint16_t volRight) {
211
// This means replicate the input signal in the processed buffer.
212
// Can also be used to verify that the error is in here...
213
if (preset_ == -1) {
214
// Strangely, OFF is not filled with zeroes every other. Seems special cased.
215
for (size_t i = 0; i < inputSize; ++i) {
216
output[i * 4 + 0] = clamp_s16((int)input[i * 2 + 0] * volLeft >> 15);
217
output[i * 4 + 1] = clamp_s16((int)input[i * 2 + 1] * volRight >> 15);
218
output[i * 4 + 2] = clamp_s16((int)input[i * 2 + 0] * volLeft >> 15);
219
output[i * 4 + 3] = clamp_s16((int)input[i * 2 + 1] * volRight >> 15);
220
}
221
return;
222
}
223
224
const uint8_t reverbVolume = Clamp(g_Config.iReverbVolume, 0, 25);
225
// Standard volume is 10, which pairs with a normal shift of 15.
226
const uint8_t finalShift = 25 - reverbVolume;
227
if (reverbVolume == 0) {
228
// Force to zero output, which is not the same as "Off."
229
memset(output, 0, inputSize * 4);
230
return;
231
}
232
233
const SasReverbData &d = presets[preset_];
234
235
// We put this on the stack instead of in the object to let the compiler optimize better (avoid mem r/w).
236
BufferWrapper<BUFSIZE> b(workspace_, pos_, d.size);
237
238
// This runs at 22khz.
239
// Very unoptimized, straight from the description. Can probably be reformulated into something way more efficient.
240
// Or we could actually template the whole thing with the parameters as template arguments, as the presets are fixed.
241
for (size_t i = 0; i < inputSize; i++) {
242
// Dividing by two here is an incorrect hack. Some multiplication factor is needed to prevent the reverb from getting too loud, though.
243
int16_t LeftInput = input[i * 2] >> 1;
244
int16_t RightInput = input[i * 2 + 1] >> 1;
245
246
int16_t Lin = LeftInput; // (d.vLIN * LeftInput) >> 15;
247
int16_t Rin = RightInput; // (d.vRIN * RightInput) >> 15;
248
249
// ____Same Side Reflection(left - to - left and right - to - right)___________________
250
b[d.mLSAME] = clamp_s16(Lin + (b[d.dLSAME] * d.vWALL >> 15) - (b[d.mLSAME - 1]*d.vIIR >> 15) + b[d.mLSAME - 1]); // L - to - L
251
b[d.mRSAME] = clamp_s16(Rin + (b[d.dRSAME] * d.vWALL >> 15) - (b[d.mRSAME - 1]*d.vIIR >> 15) + b[d.mRSAME - 1]); // R - to - R
252
// ___Different Side Reflection(left - to - right and right - to - left)_______________
253
b[d.mLDIFF] = clamp_s16(Lin + (b[d.dRDIFF] * d.vWALL >> 15) - (b[d.mLDIFF - 1]*d.vIIR >> 15) + b[d.mLDIFF - 1]); // R - to - L
254
b[d.mRDIFF] = clamp_s16(Rin + (b[d.dLDIFF] * d.vWALL >> 15) - (b[d.mRDIFF - 1]*d.vIIR >> 15) + b[d.mRDIFF - 1]); // L - to - R
255
// ___Early Echo(Comb Filter, with input from buffer)__________________________
256
int32_t Lout = ((d.vCOMB1*b[d.mLCOMB1] + d.vCOMB2*b[d.mLCOMB2] + d.vCOMB3*b[d.mLCOMB3] + d.vCOMB4*b[d.mLCOMB4]) >> 15);
257
int32_t Rout = ((d.vCOMB1*b[d.mRCOMB1] + d.vCOMB2*b[d.mRCOMB2] + d.vCOMB3*b[d.mRCOMB3] + d.vCOMB4*b[d.mRCOMB4]) >> 15);
258
// ___Late Reverb APF1(All Pass Filter 1, with input from COMB)________________
259
b[d.mLAPF1] = clamp_s16(Lout - (d.vAPF1*b[(d.mLAPF1 - d.dAPF1)] >> 15));
260
Lout = b[(d.mLAPF1 - d.dAPF1)] + (b[d.mLAPF1] * d.vAPF1 >> 15);
261
b[d.mRAPF1] = clamp_s16(Rout - (d.vAPF1*b[(d.mRAPF1 - d.dAPF1)] >> 15));
262
Rout = b[(d.mRAPF1 - d.dAPF1)] + (b[d.mRAPF1] * d.vAPF1 >> 15);
263
// ___Late Reverb APF2(All Pass Filter 2, with input from APF1)________________
264
b[d.mLAPF2] = clamp_s16(Lout - (d.vAPF2*b[(d.mLAPF2 - d.dAPF2)] >> 15));
265
Lout = b[(d.mLAPF2 - d.dAPF2)] + (b[d.mLAPF2] * d.vAPF2 >> 15);
266
b[d.mRAPF2] = clamp_s16(Rout - (d.vAPF2*b[(d.mRAPF2 - d.dAPF2)] >> 15));
267
Rout = b[(d.mRAPF2 - d.dAPF2)] + (b[d.mRAPF2] * d.vAPF2 >> 15);
268
// ___Output to Mixer(Output volume multiplied with input from APF2)___________
269
output[i * 4 + 0] = clamp_s16((Lout * volLeft) >> finalShift);
270
output[i * 4 + 1] = clamp_s16((Rout * volRight) >> finalShift);
271
output[i * 4 + 2] = 0;
272
output[i * 4 + 3] = 0;
273
274
b.Next();
275
}
276
277
// Save the state in the object.
278
pos_ = b.GetPosition();
279
}
280
281
282