/hg/icedtea6: Synchronized Gervill sources stored in IcedTea ove...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Wed Dec 2 01:36:30 PST 2009
changeset eb51df7af234 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=eb51df7af234
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed Dec 02 10:40:55 2009 +0100
Synchronized Gervill sources stored in IcedTea overlay with OpenJDK
sources 6833357: Improve time-stamp support in Gervill to reduce
jitter. 6823449: Gervill: ArrayIndexOutOfBoundsException thrown when
trying to 6806019: 38 JCK api/javax_sound/midi/ tests fails starting
from jdk7 b46
diffstat:
8 files changed, 367 insertions(+), 135 deletions(-)
overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/CHANGES.txt | 5
overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/SoftAudioBuffer.java | 24 +
overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/SoftChannel.java | 36 +
overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/SoftLimiter.java | 2
overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/SoftMainMixer.java | 235 +++++++---
overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/SoftReceiver.java | 9
overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/SoftSynthesizer.java | 96 ++--
overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/SoftVoice.java | 95 ++--
diffs (truncated from 1079 to 500 lines):
diff -r d9377bd6e521 -r eb51df7af234 overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/CHANGES.txt
--- a/overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/CHANGES.txt Fri Nov 27 11:17:31 2009 -0500
+++ b/overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/CHANGES.txt Wed Dec 02 10:40:55 2009 +0100
@@ -1,3 +1,6 @@ 6823446: Gervill SoftLowFrequencyOscilla
+6833357: Improve time-stamp support in Gervill to reduce jitter.
+6823449: Gervill: ArrayIndexOutOfBoundsException thrown when trying to
+6806019: 38 JCK api/javax_sound/midi/ tests fails starting from jdk7 b46
6823446: Gervill SoftLowFrequencyOscillator fails when freq is set to 0 cent or 8.1758 Hz.
6823445: Gervill SoftChannel/ResetAllControllers jtreg test fails after portamento fix from last merge.
6821030: Merge OpenJDK Gervill with upstream sources, Q1CY2009
@@ -307,4 +310,4 @@ VERSION 0.1
- General Midi Level 2
- MIDI Tuning Standard
- Drumkits can be used on any channel
- - Sinc interpolation with anti-aliasing
\ No newline at end of file
+ - Sinc interpolation with anti-aliasing
diff -r d9377bd6e521 -r eb51df7af234 overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/SoftAudioBuffer.java
--- a/overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/SoftAudioBuffer.java Fri Nov 27 11:17:31 2009 -0500
+++ b/overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/SoftAudioBuffer.java Wed Dec 02 10:40:55 2009 +0100
@@ -46,6 +46,30 @@ public class SoftAudioBuffer {
this.size = size;
this.format = format;
converter = AudioFloatConverter.getConverter(format);
+ }
+
+ public void swap(SoftAudioBuffer swap)
+ {
+ int bak_size = size;
+ float[] bak_buffer = buffer;
+ boolean bak_empty = empty;
+ AudioFormat bak_format = format;
+ AudioFloatConverter bak_converter = converter;
+ byte[] bak_converter_buffer = converter_buffer;
+
+ size = swap.size;
+ buffer = swap.buffer;
+ empty = swap.empty;
+ format = swap.format;
+ converter = swap.converter;
+ converter_buffer = swap.converter_buffer;
+
+ swap.size = bak_size;
+ swap.buffer = bak_buffer;
+ swap.empty = bak_empty;
+ swap.format = bak_format;
+ swap.converter = bak_converter;
+ swap.converter_buffer = bak_converter_buffer;
}
public AudioFormat getFormat() {
diff -r d9377bd6e521 -r eb51df7af234 overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/SoftChannel.java
--- a/overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/SoftChannel.java Fri Nov 27 11:17:31 2009 -0500
+++ b/overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/SoftChannel.java Wed Dec 02 10:40:55 2009 +0100
@@ -218,6 +218,15 @@ public class SoftChannel implements Midi
}
private int findFreeVoice(int x) {
+ if(x == -1)
+ {
+ // x = -1 means that there where no available voice
+ // last time we called findFreeVoice
+ // and it hasn't changed because no audio has been
+ // rendered in the meantime.
+ // Therefore we have to return -1.
+ return -1;
+ }
for (int i = x; i < voices.length; i++)
if (!voices[i].active)
return i;
@@ -285,9 +294,9 @@ public class SoftChannel implements Midi
} else {
// Default Voice Allocation
// * Find voice that is on
- // and Find voice which has lowest voiceID ( oldest voice)
+ // and Find voice which has lowest voiceID ( oldest voice)
// * Or find voice that is off
- // and Find voice which has lowest voiceID ( oldest voice)
+ // and Find voice which has lowest voiceID ( oldest voice)
int voiceNo = -1;
@@ -328,7 +337,7 @@ public class SoftChannel implements Midi
}
protected void initVoice(SoftVoice voice, SoftPerformer p, int voiceID,
- int noteNumber, int velocity, ModelConnectionBlock[] connectionBlocks,
+ int noteNumber, int velocity, int delay, ModelConnectionBlock[] connectionBlocks,
ModelChannelMixer channelmixer, boolean releaseTriggered) {
if (voice.active) {
// Voice is active , we must steal the voice
@@ -363,7 +372,7 @@ public class SoftChannel implements Midi
voice.objects.put("midi_cc", co_midi_cc);
voice.objects.put("midi_rpn", co_midi_rpn);
voice.objects.put("midi_nrpn", co_midi_nrpn);
- voice.noteOn(noteNumber, velocity);
+ voice.noteOn(noteNumber, velocity, delay);
voice.setMute(mute);
voice.setSoloMute(solomute);
if (releaseTriggered)
@@ -399,14 +408,21 @@ public class SoftChannel implements Midi
}
public void noteOn(int noteNumber, int velocity) {
+ noteOn(noteNumber, velocity, 0);
+ }
+
+ /* A special noteOn with delay parameter, which is used to
+ * start note within control buffers.
+ */
+ protected void noteOn(int noteNumber, int velocity, int delay) {
noteNumber = restrict7Bit(noteNumber);
velocity = restrict7Bit(velocity);
- noteOn_internal(noteNumber, velocity);
+ noteOn_internal(noteNumber, velocity, delay);
if (current_mixer != null)
current_mixer.noteOn(noteNumber, velocity);
}
- private void noteOn_internal(int noteNumber, int velocity) {
+ private void noteOn_internal(int noteNumber, int velocity, int delay) {
if (velocity == 0) {
noteOff_internal(noteNumber, 64);
@@ -490,6 +506,7 @@ public class SoftChannel implements Midi
int tunedKey = (int)(Math.round(tuning.getTuning()[noteNumber]/100.0));
play_noteNumber = noteNumber;
play_velocity = velocity;
+ play_delay = delay;
play_releasetriggered = false;
lastVelocity[noteNumber] = velocity;
current_director.noteOn(tunedKey, velocity);
@@ -594,6 +611,7 @@ public class SoftChannel implements Midi
play_noteNumber = noteNumber;
play_velocity = lastVelocity[noteNumber];
play_releasetriggered = true;
+ play_delay = 0;
current_director.noteOff(tunedKey, velocity);
}
@@ -604,12 +622,14 @@ public class SoftChannel implements Midi
private int voiceNo = 0;
private int play_noteNumber = 0;
private int play_velocity = 0;
+ private int play_delay = 0;
private boolean play_releasetriggered = false;
public void play(int performerIndex, ModelConnectionBlock[] connectionBlocks) {
int noteNumber = play_noteNumber;
int velocity = play_velocity;
+ int delay = play_delay;
boolean releasetriggered = play_releasetriggered;
SoftPerformer p = current_instrument.getPerformers()[performerIndex];
@@ -633,7 +653,7 @@ public class SoftChannel implements Midi
if (voiceNo == -1)
return;
- initVoice(voices[voiceNo], p, prevVoiceID, noteNumber, velocity,
+ initVoice(voices[voiceNo], p, prevVoiceID, noteNumber, velocity, delay,
connectionBlocks, current_mixer, releasetriggered);
}
@@ -1212,7 +1232,7 @@ 121 |79H |**Coarse Tuning |0
this.controller[controller] = value;
if(controller < 0x20)
- this.controller[controller + 0x20] = 0;
+ this.controller[controller + 0x20] = 0;
for (int i = 0; i < voices.length; i++)
if (voices[i].active)
diff -r d9377bd6e521 -r eb51df7af234 overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/SoftLimiter.java
--- a/overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/SoftLimiter.java Fri Nov 27 11:17:31 2009 -0500
+++ b/overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/SoftLimiter.java Wed Dec 02 10:40:55 2009 +0100
@@ -79,7 +79,7 @@ public class SoftLimiter implements Soft
if (silentcounter > 60) {
if (!mix) {
bufferLout.clear();
- bufferRout.clear();
+ if(bufferRout != null) bufferRout.clear();
}
return;
}
diff -r d9377bd6e521 -r eb51df7af234 overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/SoftMainMixer.java
--- a/overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/SoftMainMixer.java Fri Nov 27 11:17:31 2009 -0500
+++ b/overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/SoftMainMixer.java Wed Dec 02 10:40:55 2009 +0100
@@ -26,7 +26,6 @@ package com.sun.media.sound;
import java.io.IOException;
import java.io.InputStream;
-import java.util.Arrays;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Set;
@@ -46,28 +45,37 @@ import javax.sound.sampled.AudioSystem;
*/
public class SoftMainMixer {
+ // A private class thats contains a ModelChannelMixer and it's private buffers.
+ // This becomes necessary when we want to have separate delay buffers for each channel mixer.
+ private class SoftChannelMixerContainer
+ {
+ ModelChannelMixer mixer;
+ SoftAudioBuffer[] buffers;
+ }
+
public final static int CHANNEL_LEFT = 0;
public final static int CHANNEL_RIGHT = 1;
public final static int CHANNEL_MONO = 2;
- public final static int CHANNEL_EFFECT1 = 3;
- public final static int CHANNEL_EFFECT2 = 4;
- public final static int CHANNEL_EFFECT3 = 5;
- public final static int CHANNEL_EFFECT4 = 6;
+ public final static int CHANNEL_DELAY_LEFT = 3;
+ public final static int CHANNEL_DELAY_RIGHT = 4;
+ public final static int CHANNEL_DELAY_MONO = 5;
+ public final static int CHANNEL_EFFECT1 = 6;
+ public final static int CHANNEL_EFFECT2 = 7;
+ public final static int CHANNEL_DELAY_EFFECT1 = 8;
+ public final static int CHANNEL_DELAY_EFFECT2 = 9;
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;
- public final static int CHANNEL_CHANNELMIXER_MONO = 16;
protected boolean active_sensing_on = false;
private long msec_last_activity = -1;
private boolean pusher_silent = false;
private int pusher_silent_count = 0;
- private long msec_pos = 0;
+ private long sample_pos = 0;
protected boolean readfully = true;
private Object control_mutex;
private SoftSynthesizer synth;
+ private float samplerate = 44100;
private int nrofchannels = 2;
private SoftVoice[] voicestatus = null;
private SoftAudioBuffer[] buffers;
@@ -75,7 +83,10 @@ public class SoftMainMixer {
private SoftAudioProcessor chorus;
private SoftAudioProcessor agc;
private long msec_buffer_len = 0;
+ private int buffer_len = 0;
protected TreeMap<Long, Object> midimessages = new TreeMap<Long, Object>();
+ private int delay_midievent = 0;
+ private int max_delay_midievent = 0;
double last_volume_left = 1.0;
double last_volume_right = 1.0;
private double[] co_master_balance = new double[1];
@@ -83,9 +94,9 @@ public class SoftMainMixer {
private double[] co_master_coarse_tuning = new double[1];
private double[] co_master_fine_tuning = new double[1];
private AudioInputStream ais;
- private Set<ModelChannelMixer> registeredMixers = null;
+ private Set<SoftChannelMixerContainer> registeredMixers = null;
private Set<ModelChannelMixer> stoppedMixers = null;
- private ModelChannelMixer[] cur_registeredMixers = null;
+ private SoftChannelMixerContainer[] cur_registeredMixers = null;
protected SoftControl co_master = new SoftControl() {
double[] balance = co_master_balance;
@@ -413,26 +424,68 @@ public class SoftMainMixer {
Iterator<Entry<Long, Object>> iter = midimessages.entrySet().iterator();
while (iter.hasNext()) {
Entry<Long, Object> entry = iter.next();
- if (entry.getKey() > (timeStamp + 100))
+ if (entry.getKey() >= (timeStamp + msec_buffer_len))
return;
+ long msec_delay = entry.getKey() - timeStamp;
+ delay_midievent = (int)(msec_delay * (samplerate / 1000000.0) + 0.5);
+ if(delay_midievent > max_delay_midievent)
+ delay_midievent = max_delay_midievent;
+ if(delay_midievent < 0)
+ delay_midievent = 0;
processMessage(entry.getValue());
iter.remove();
}
+ delay_midievent = 0;
}
protected void processAudioBuffers() {
- for (int i = 0; i < buffers.length; i++) {
- buffers[i].clear();
+
+ if(synth.weakstream != null && synth.weakstream.silent_samples != 0)
+ {
+ sample_pos += synth.weakstream.silent_samples;
+ synth.weakstream.silent_samples = 0;
+ }
+
+ for (int i = 0; i < buffers.length; i++) {
+ if(i != CHANNEL_DELAY_LEFT &&
+ i != CHANNEL_DELAY_RIGHT &&
+ i != CHANNEL_DELAY_MONO &&
+ i != CHANNEL_DELAY_EFFECT1 &&
+ i != CHANNEL_DELAY_EFFECT2)
+ buffers[i].clear();
+ }
+
+ if(!buffers[CHANNEL_DELAY_LEFT].isSilent())
+ {
+ buffers[CHANNEL_LEFT].swap(buffers[CHANNEL_DELAY_LEFT]);
+ }
+ if(!buffers[CHANNEL_DELAY_RIGHT].isSilent())
+ {
+ buffers[CHANNEL_RIGHT].swap(buffers[CHANNEL_DELAY_RIGHT]);
+ }
+ if(!buffers[CHANNEL_DELAY_MONO].isSilent())
+ {
+ buffers[CHANNEL_MONO].swap(buffers[CHANNEL_DELAY_MONO]);
+ }
+ if(!buffers[CHANNEL_DELAY_EFFECT1].isSilent())
+ {
+ buffers[CHANNEL_EFFECT1].swap(buffers[CHANNEL_DELAY_EFFECT1]);
+ }
+ if(!buffers[CHANNEL_DELAY_EFFECT2].isSilent())
+ {
+ buffers[CHANNEL_EFFECT2].swap(buffers[CHANNEL_DELAY_EFFECT2]);
}
double volume_left;
double volume_right;
- ModelChannelMixer[] act_registeredMixers;
+ SoftChannelMixerContainer[] act_registeredMixers;
// perform control logic
synchronized (control_mutex) {
+ long msec_pos = (long)(sample_pos * (1000000.0 / samplerate));
+
processMessages(msec_pos);
if (active_sensing_on) {
@@ -450,7 +503,7 @@ public class SoftMainMixer {
for (int i = 0; i < voicestatus.length; i++)
if (voicestatus[i].active)
voicestatus[i].processControlLogic();
- msec_pos += msec_buffer_len;
+ sample_pos += buffer_len;
double volume = co_master_volume[0];
volume_left = volume;
@@ -469,7 +522,7 @@ public class SoftMainMixer {
if (cur_registeredMixers == null) {
if (registeredMixers != null) {
cur_registeredMixers =
- new ModelChannelMixer[registeredMixers.size()];
+ new SoftChannelMixerContainer[registeredMixers.size()];
registeredMixers.toArray(cur_registeredMixers);
}
}
@@ -483,49 +536,67 @@ public class SoftMainMixer {
if (act_registeredMixers != null) {
- // Reroute default left,right output
- // to channelmixer left,right input/output
+ // Make backup of left,right,mono channels
SoftAudioBuffer leftbak = buffers[CHANNEL_LEFT];
SoftAudioBuffer rightbak = buffers[CHANNEL_RIGHT];
SoftAudioBuffer monobak = buffers[CHANNEL_MONO];
- buffers[CHANNEL_LEFT] = buffers[CHANNEL_CHANNELMIXER_LEFT];
- buffers[CHANNEL_RIGHT] = buffers[CHANNEL_CHANNELMIXER_RIGHT];
- buffers[CHANNEL_MONO] = buffers[CHANNEL_CHANNELMIXER_MONO];
+ SoftAudioBuffer delayleftbak = buffers[CHANNEL_DELAY_LEFT];
+ SoftAudioBuffer delayrightbak = buffers[CHANNEL_DELAY_RIGHT];
+ SoftAudioBuffer delaymonobak = buffers[CHANNEL_DELAY_MONO];
int bufferlen = buffers[CHANNEL_LEFT].getSize();
float[][] cbuffer = new float[nrofchannels][];
- cbuffer[0] = buffers[CHANNEL_LEFT].array();
- if (nrofchannels != 1)
- cbuffer[1] = buffers[CHANNEL_RIGHT].array();
-
float[][] obuffer = new float[nrofchannels][];
obuffer[0] = leftbak.array();
if (nrofchannels != 1)
obuffer[1] = rightbak.array();
- for (ModelChannelMixer cmixer : act_registeredMixers) {
- for (int i = 0; i < cbuffer.length; i++)
- Arrays.fill(cbuffer[i], 0);
+ for (SoftChannelMixerContainer cmixer : act_registeredMixers) {
+
+ // Reroute default left,right output
+ // to channelmixer left,right input/output
+ buffers[CHANNEL_LEFT] = cmixer.buffers[CHANNEL_LEFT];
+ buffers[CHANNEL_RIGHT] = cmixer.buffers[CHANNEL_RIGHT];
+ buffers[CHANNEL_MONO] = cmixer.buffers[CHANNEL_MONO];
+ buffers[CHANNEL_DELAY_LEFT] = cmixer.buffers[CHANNEL_DELAY_LEFT];
+ buffers[CHANNEL_DELAY_RIGHT] = cmixer.buffers[CHANNEL_DELAY_RIGHT];
+ buffers[CHANNEL_DELAY_MONO] = cmixer.buffers[CHANNEL_DELAY_MONO];
+
+ buffers[CHANNEL_LEFT].clear();
+ buffers[CHANNEL_RIGHT].clear();
buffers[CHANNEL_MONO].clear();
+
+ if(!buffers[CHANNEL_DELAY_LEFT].isSilent())
+ {
+ buffers[CHANNEL_LEFT].swap(buffers[CHANNEL_DELAY_LEFT]);
+ }
+ if(!buffers[CHANNEL_DELAY_RIGHT].isSilent())
+ {
+ buffers[CHANNEL_RIGHT].swap(buffers[CHANNEL_DELAY_RIGHT]);
+ }
+ if(!buffers[CHANNEL_DELAY_MONO].isSilent())
+ {
+ buffers[CHANNEL_MONO].swap(buffers[CHANNEL_DELAY_MONO]);
+ }
+
+ cbuffer[0] = buffers[CHANNEL_LEFT].array();
+ if (nrofchannels != 1)
+ cbuffer[1] = buffers[CHANNEL_RIGHT].array();
+
boolean hasactivevoices = false;
for (int i = 0; i < voicestatus.length; i++)
if (voicestatus[i].active)
- if (voicestatus[i].channelmixer == cmixer) {
+ if (voicestatus[i].channelmixer == cmixer.mixer) {
voicestatus[i].processAudioLogic(buffers);
hasactivevoices = true;
}
- if (!cmixer.process(cbuffer, 0, bufferlen)) {
- synchronized (control_mutex) {
- registeredMixers.remove(cmixer);
- cur_registeredMixers = null;
- }
- }
+
if(!buffers[CHANNEL_MONO].isSilent())
{
float[] mono = buffers[CHANNEL_MONO].array();
- float[] left = buffers[CHANNEL_LEFT].array();
+ float[] left = buffers[CHANNEL_LEFT].array();
if (nrofchannels != 1) {
float[] right = buffers[CHANNEL_RIGHT].array();
for (int i = 0; i < bufferlen; i++) {
@@ -538,9 +609,16 @@ public class SoftMainMixer {
{
for (int i = 0; i < bufferlen; i++) {
left[i] += mono[i];
- }
- }
- }
+ }
+ }
+ }
+
+ if (!cmixer.mixer.process(cbuffer, 0, bufferlen)) {
+ synchronized (control_mutex) {
+ registeredMixers.remove(cmixer);
+ cur_registeredMixers = null;
+ }
+ }
for (int i = 0; i < cbuffer.length; i++) {
float[] cbuff = cbuffer[i];
@@ -554,7 +632,7 @@ public class SoftMainMixer {
if (stoppedMixers != null) {
if (stoppedMixers.contains(cmixer)) {
stoppedMixers.remove(cmixer);
- cmixer.stop();
+ cmixer.mixer.stop();
}
}
}
@@ -565,6 +643,9 @@ public class SoftMainMixer {
buffers[CHANNEL_LEFT] = leftbak;
buffers[CHANNEL_RIGHT] = rightbak;
buffers[CHANNEL_MONO] = monobak;
+ buffers[CHANNEL_DELAY_LEFT] = delayleftbak;
+ buffers[CHANNEL_DELAY_RIGHT] = delayrightbak;
+ buffers[CHANNEL_DELAY_MONO] = delaymonobak;
}
@@ -649,16 +730,25 @@ public class SoftMainMixer {
if(buffers[CHANNEL_LEFT].isSilent()
&& buffers[CHANNEL_RIGHT].isSilent())
- {
- pusher_silent_count++;
- if(pusher_silent_count > 5)
+ {
+
+ int midimessages_size;
+ synchronized (control_mutex) {
+ midimessages_size = midimessages.size();
+ }
+
+ if(midimessages_size == 0)
{
- pusher_silent_count = 0;
More information about the distro-pkg-dev
mailing list