-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathSoftMixingMainMixer.java
259 lines (195 loc) · 7.95 KB
/
SoftMixingMainMixer.java
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
/*
* Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code 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
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package com.sun.gervill;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;
import javax.sound.sampled.AudioInputStream;
import javax.sound.sampled.AudioSystem;
/**
* Main mixer for SoftMixingMixer.
*
* @author Karl Helgason
*/
public final class SoftMixingMainMixer {
public final static int CHANNEL_LEFT = 0;
public final static int CHANNEL_RIGHT = 1;
public final static int CHANNEL_EFFECT1 = 2;
public final static int CHANNEL_EFFECT2 = 3;
public final static int CHANNEL_EFFECT3 = 4;
public final static int CHANNEL_EFFECT4 = 5;
public final static int CHANNEL_LEFT_DRY = 10;
public final static int CHANNEL_RIGHT_DRY = 11;
public final static int CHANNEL_SCRATCH1 = 12;
public final static int CHANNEL_SCRATCH2 = 13;
public final static int CHANNEL_CHANNELMIXER_LEFT = 14;
public final static int CHANNEL_CHANNELMIXER_RIGHT = 15;
private final SoftMixingMixer mixer;
private final AudioInputStream ais;
private final SoftAudioBuffer[] buffers;
private final SoftAudioProcessor reverb;
private final SoftAudioProcessor chorus;
private final SoftAudioProcessor agc;
private final int nrofchannels;
private final Object control_mutex;
private final List<SoftMixingDataLine> openLinesList = new ArrayList<SoftMixingDataLine>();
private SoftMixingDataLine[] openLines = new SoftMixingDataLine[0];
public AudioInputStream getInputStream() {
return ais;
}
void processAudioBuffers() {
for (int i = 0; i < buffers.length; i++) {
buffers[i].clear();
}
SoftMixingDataLine[] openLines;
synchronized (control_mutex) {
openLines = this.openLines;
for (int i = 0; i < openLines.length; i++) {
openLines[i].processControlLogic();
}
chorus.processControlLogic();
reverb.processControlLogic();
agc.processControlLogic();
}
for (int i = 0; i < openLines.length; i++) {
openLines[i].processAudioLogic(buffers);
}
chorus.processAudio();
reverb.processAudio();
agc.processAudio();
}
public SoftMixingMainMixer(SoftMixingMixer mixer) {
this.mixer = mixer;
nrofchannels = mixer.getFormat().getChannels();
int buffersize = (int) (mixer.getFormat().getSampleRate() / mixer
.getControlRate());
control_mutex = mixer.control_mutex;
buffers = new SoftAudioBuffer[16];
for (int i = 0; i < buffers.length; i++) {
buffers[i] = new SoftAudioBuffer(buffersize, mixer.getFormat());
}
reverb = new SoftReverb();
chorus = new SoftChorus();
agc = new SoftLimiter();
float samplerate = mixer.getFormat().getSampleRate();
float controlrate = mixer.getControlRate();
reverb.init(samplerate, controlrate);
chorus.init(samplerate, controlrate);
agc.init(samplerate, controlrate);
reverb.setMixMode(true);
chorus.setMixMode(true);
agc.setMixMode(false);
chorus.setInput(0, buffers[CHANNEL_EFFECT2]);
chorus.setOutput(0, buffers[CHANNEL_LEFT]);
if (nrofchannels != 1)
chorus.setOutput(1, buffers[CHANNEL_RIGHT]);
chorus.setOutput(2, buffers[CHANNEL_EFFECT1]);
reverb.setInput(0, buffers[CHANNEL_EFFECT1]);
reverb.setOutput(0, buffers[CHANNEL_LEFT]);
if (nrofchannels != 1)
reverb.setOutput(1, buffers[CHANNEL_RIGHT]);
agc.setInput(0, buffers[CHANNEL_LEFT]);
if (nrofchannels != 1)
agc.setInput(1, buffers[CHANNEL_RIGHT]);
agc.setOutput(0, buffers[CHANNEL_LEFT]);
if (nrofchannels != 1)
agc.setOutput(1, buffers[CHANNEL_RIGHT]);
InputStream in = new InputStream() {
private final SoftAudioBuffer[] buffers = SoftMixingMainMixer.this.buffers;
private final int nrofchannels = SoftMixingMainMixer.this.mixer
.getFormat().getChannels();
private final int buffersize = buffers[0].getSize();
private final byte[] bbuffer = new byte[buffersize
* (SoftMixingMainMixer.this.mixer.getFormat()
.getSampleSizeInBits() / 8) * nrofchannels];
private int bbuffer_pos = 0;
private final byte[] single = new byte[1];
public void fillBuffer() {
processAudioBuffers();
for (int i = 0; i < nrofchannels; i++)
buffers[i].get(bbuffer, i);
bbuffer_pos = 0;
}
public int read(byte[] b, int off, int len) {
int bbuffer_len = bbuffer.length;
int offlen = off + len;
byte[] bbuffer = this.bbuffer;
while (off < offlen)
if (available() == 0)
fillBuffer();
else {
int bbuffer_pos = this.bbuffer_pos;
while (off < offlen && bbuffer_pos < bbuffer_len)
b[off++] = bbuffer[bbuffer_pos++];
this.bbuffer_pos = bbuffer_pos;
}
return len;
}
public int read() throws IOException {
int ret = read(single);
if (ret == -1)
return -1;
return single[0] & 0xFF;
}
public int available() {
return bbuffer.length - bbuffer_pos;
}
public void close() {
SoftMixingMainMixer.this.mixer.close();
}
};
ais = new AudioInputStream(in, mixer.getFormat(),
AudioSystem.NOT_SPECIFIED);
}
public void openLine(SoftMixingDataLine line) {
synchronized (control_mutex) {
openLinesList.add(line);
openLines = openLinesList
.toArray(new SoftMixingDataLine[openLinesList.size()]);
}
}
public void closeLine(SoftMixingDataLine line) {
synchronized (control_mutex) {
openLinesList.remove(line);
openLines = openLinesList
.toArray(new SoftMixingDataLine[openLinesList.size()]);
if (openLines.length == 0)
if (mixer.implicitOpen)
mixer.close();
}
}
public SoftMixingDataLine[] getOpenLines() {
synchronized (control_mutex) {
return openLines;
}
}
public void close() {
SoftMixingDataLine[] openLines = this.openLines;
for (int i = 0; i < openLines.length; i++) {
openLines[i].close();
}
}
}