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

Omair Majid omajid at redhat.com
Wed Oct 8 07:10:20 PDT 2008


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

	    * src/java/org/classpath/icedtea/pulseaudio/PulseAudioMixer.java
	    (isSynchronizationSupported): Return false.
	    (synchronize): Commented out non-working code. Throw exception instead.

diffstat:

1 file changed, 35 insertions(+), 32 deletions(-)
src/java/org/classpath/icedtea/pulseaudio/PulseAudioMixer.java |   67 +++++-----

diffs (81 lines):

diff -r a4ec901897a5 -r c9645471db6c src/java/org/classpath/icedtea/pulseaudio/PulseAudioMixer.java
--- a/src/java/org/classpath/icedtea/pulseaudio/PulseAudioMixer.java	Tue Oct 07 17:17:31 2008 -0400
+++ b/src/java/org/classpath/icedtea/pulseaudio/PulseAudioMixer.java	Wed Oct 08 10:09:48 2008 -0400
@@ -393,42 +393,45 @@ public class PulseAudioMixer implements 
 
 	@Override
 	public boolean isSynchronizationSupported(Line[] lines, boolean maintainSync) {
-		// FIXME
-		return true;
+		return false;
 	}
 
 	@Override
 	public void synchronize(Line[] lines, boolean maintainSync) {
-		Line masterStream = null;
-		for (Line line : lines) {
-			if (line.isOpen()) {
-				masterStream = line;
-				break;
-			}
-		}
-		if (masterStream == null) {
-			// for now, can't synchronize lines if none of them is open (no
-			// stream pointer to pass)
-			// will see what to do about this later
-			throw new IllegalArgumentException();
-		}
-
-		try {
-
-			for (Line line : lines) {
-				if (line != masterStream) {
-
-					((PulseAudioDataLine) line)
-							.reconnectforSynchronization(((PulseAudioDataLine) masterStream)
-									.getStream());
-
-				}
-			}
-		} catch (LineUnavailableException e) {
-			// we couldn't reconnect, so tell the user we failed by throwing an
-			// exception
-			throw new IllegalArgumentException(e);
-		}
+
+		throw new IllegalArgumentException(
+				"Mixer does not support synchronizing lines");
+
+		// Line masterStream = null;
+		// for (Line line : lines) {
+		// if (line.isOpen()) {
+		// masterStream = line;
+		// break;
+		// }
+		// }
+		// if (masterStream == null) {
+		// // for now, can't synchronize lines if none of them is open (no
+		// // stream pointer to pass)
+		// // will see what to do about this later
+		// throw new IllegalArgumentException();
+		// }
+		//
+		// try {
+		//
+		// for (Line line : lines) {
+		// if (line != masterStream) {
+		//
+		// ((PulseAudioDataLine) line)
+		// .reconnectforSynchronization(((PulseAudioDataLine) masterStream)
+		// .getStream());
+		//
+		// }
+		// }
+		// } catch (LineUnavailableException e) {
+		// // we couldn't reconnect, so tell the user we failed by throwing an
+		// // exception
+		// throw new IllegalArgumentException(e);
+		// }
 
 	}
 



More information about the distro-pkg-dev mailing list