changeset in /hg/pulseaudio: 2008-09-19 Omair Majid <omajid at reda...
Omair Majid
omajid at redhat.com
Fri Sep 19 10:47:11 PDT 2008
changeset fda25668e4d1 in /hg/pulseaudio
details: http://icedtea.classpath.org/hg/pulseaudio?cmd=changeset;node=fda25668e4d1
description:
2008-09-19 Omair Majid <omajid at redahat.com>
* src/java/org/classpath/icedtea/pulseaudio/PulseAudioSourceDataLine.java
(connectLine): Changed the buffer attributes so that corking/uncorking
doesnt hang the program.
diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
src/java/org/classpath/icedtea/pulseaudio/PulseAudioSourceDataLine.java | 3 ++-
diffs (13 lines):
diff -r da120992e52b -r fda25668e4d1 src/java/org/classpath/icedtea/pulseaudio/PulseAudioSourceDataLine.java
--- a/src/java/org/classpath/icedtea/pulseaudio/PulseAudioSourceDataLine.java Fri Sep 19 12:56:33 2008 -0400
+++ b/src/java/org/classpath/icedtea/pulseaudio/PulseAudioSourceDataLine.java Fri Sep 19 13:06:48 2008 -0400
@@ -106,7 +106,8 @@ public class PulseAudioSourceDataLine ex
protected void connectLine(int bufferSize) throws LineUnavailableException {
StreamBufferAttributes bufferAttributes = new StreamBufferAttributes(
- bufferSize, bufferSize / 4, bufferSize / 4, bufferSize / 10, 0);
+ bufferSize, bufferSize / 4, bufferSize / 8,
+ ((bufferSize / 10) > 100 ? bufferSize / 10 : 100), 0);
synchronized (eventLoop.threadLock) {
stream.connectForPlayback(Stream.DEFAULT_DEVICE, bufferAttributes);
More information about the distro-pkg-dev
mailing list