changeset in /hg/pulseaudio: 2008-09-25 Omair Majid <omajid at redh...
Omair Majid
omajid at redhat.com
Fri Sep 26 08:21:26 PDT 2008
changeset 4e1873a3f88f in /hg/pulseaudio
details: http://icedtea.classpath.org/hg/pulseaudio?cmd=changeset;node=4e1873a3f88f
description:
2008-09-25 Omair Majid <omajid at redhat.com>
* src/java/org/classpath/icedtea/pulseaudio/PulseAudioClip.java
(ClipThread.run): Dont let loopsLeft wrap around when looping
continuously.
diffstat:
1 file changed, 10 insertions(+), 5 deletions(-)
src/java/org/classpath/icedtea/pulseaudio/PulseAudioClip.java | 15 ++++++----
diffs (39 lines):
diff -r e29a9eb84a4e -r 4e1873a3f88f src/java/org/classpath/icedtea/pulseaudio/PulseAudioClip.java
--- a/src/java/org/classpath/icedtea/pulseaudio/PulseAudioClip.java Wed Sep 24 10:51:53 2008 -0400
+++ b/src/java/org/classpath/icedtea/pulseaudio/PulseAudioClip.java Thu Sep 25 11:44:25 2008 -0400
@@ -100,7 +100,9 @@ public class PulseAudioClip extends Puls
} else {
synchronized (clipLock) {
currentFrame = startFrame;
- loopsLeft--;
+ if (loopsLeft != Integer.MIN_VALUE) {
+ loopsLeft--;
+ }
}
}
@@ -192,17 +194,20 @@ public class PulseAudioClip extends Puls
}
- protected void connectLine(int bufferSize, Stream masterStream) throws LineUnavailableException{
+ protected void connectLine(int bufferSize, Stream masterStream)
+ throws LineUnavailableException {
StreamBufferAttributes bufferAttributes = new StreamBufferAttributes(
bufferSize, bufferSize / 2, bufferSize / 2, bufferSize / 2, 0);
- if(masterStream != null) {
+ if (masterStream != null) {
synchronized (eventLoop.threadLock) {
- stream.connectForPlayback(Stream.DEFAULT_DEVICE, bufferAttributes, masterStream.getStreamPointer());
+ stream.connectForPlayback(Stream.DEFAULT_DEVICE,
+ bufferAttributes, masterStream.getStreamPointer());
}
} else {
synchronized (eventLoop.threadLock) {
- stream.connectForPlayback(Stream.DEFAULT_DEVICE, bufferAttributes, null);
+ stream.connectForPlayback(Stream.DEFAULT_DEVICE,
+ bufferAttributes, null);
}
}
}
More information about the distro-pkg-dev
mailing list