changeset in /hg/pulseaudio: 2008-10-08 Omair Majid <omajid at redh...

Omair Majid omajid at redhat.com
Wed Oct 8 07:19:40 PDT 2008


changeset 96e885ef985c in /hg/pulseaudio
details: http://icedtea.classpath.org/hg/pulseaudio?cmd=changeset;node=96e885ef985c
description:
	2008-10-08 Omair Majid <omajid at redhat.com>

	    * src/java/org/classpath/icedtea/pulseaudio/PulseAudioMixer.java
	    (getMaxLines): Return AudioSystem.NOT_SPECIFIED only for supported
	    formats.

diffstat:

1 file changed, 10 insertions(+), 2 deletions(-)
src/java/org/classpath/icedtea/pulseaudio/PulseAudioMixer.java |   12 ++++++++--

diffs (22 lines):

diff -r c9645471db6c -r 96e885ef985c src/java/org/classpath/icedtea/pulseaudio/PulseAudioMixer.java
--- a/src/java/org/classpath/icedtea/pulseaudio/PulseAudioMixer.java	Wed Oct 08 10:09:48 2008 -0400
+++ b/src/java/org/classpath/icedtea/pulseaudio/PulseAudioMixer.java	Wed Oct 08 10:19:48 2008 -0400
@@ -316,8 +316,16 @@ public class PulseAudioMixer implements 
 	}
 
 	@Override
-	public int getMaxLines(javax.sound.sampled.Line.Info info) {
-		return AudioSystem.NOT_SPECIFIED;
+	public int getMaxLines(Line.Info info) {
+		/*
+		 * PulseAudio supports (theoretically) unlimited number of streams for
+		 * supported formats
+		 */
+		if (isLineSupported(info)) {
+			return AudioSystem.NOT_SPECIFIED;
+		}
+		
+		return 0;
 	}
 
 	@Override



More information about the distro-pkg-dev mailing list