changeset in /hg/pulseaudio: 2008-09-30 Omair Majid <omajid at redh...
Omair Majid
omajid at redhat.com
Tue Sep 30 11:44:01 PDT 2008
changeset a6a5ca46e90e in /hg/pulseaudio
details: http://icedtea.classpath.org/hg/pulseaudio?cmd=changeset;node=a6a5ca46e90e
description:
2008-09-30 Omair Majid <omajid at redhat.com>
* src/java/org/classpath/icedtea/pulseaudio/PulseAudioClip.java
(open): Initialize varaibles to sane values on open to survive reopening.
diffstat:
1 file changed, 7 insertions(+), 1 deletion(-)
src/java/org/classpath/icedtea/pulseaudio/PulseAudioClip.java | 8 +++++++-
diffs (35 lines):
diff -r 55bb87d31a6f -r a6a5ca46e90e src/java/org/classpath/icedtea/pulseaudio/PulseAudioClip.java
--- a/src/java/org/classpath/icedtea/pulseaudio/PulseAudioClip.java Tue Sep 30 12:17:33 2008 -0400
+++ b/src/java/org/classpath/icedtea/pulseaudio/PulseAudioClip.java Tue Sep 30 14:43:55 2008 -0400
@@ -70,7 +70,7 @@ public class PulseAudioClip extends Puls
public static final String DEFAULT_CLIP_NAME = "Clip";
private Object clipLock = new Object();
- private int loopsLeft;
+ private int loopsLeft = 0;
// private Semaphore clipSemaphore = new Semaphore(1);
@@ -378,16 +378,22 @@ public class PulseAudioClip extends Puls
super.open(format);
this.data = new byte[bufferSize];
System.arraycopy(data, offset, this.data, 0, bufferSize);
+
frameCount = bufferSize / format.getFrameSize();
currentFrame = 0;
framesSinceOpen = 0;
+ startFrame = 0;
endFrame = frameCount - 1;
+ loopsLeft = 0;
+
PulseAudioVolumeControl volumeControl = new PulseAudioVolumeControl(
this, eventLoop);
PulseAudioMuteControl muteControl = new PulseAudioMuteControl(this,
volumeControl);
controls.add(volumeControl);
controls.add(muteControl);
+ volume = volumeControl.getValue();
+ muted = muteControl.getValue();
PulseAudioMixer mixer = PulseAudioMixer.getInstance();
mixer.addSourceLine(this);
More information about the distro-pkg-dev
mailing list