changeset in /hg/pulseaudio: added sourcePort

iivan at town.yyz.redhat.com iivan at town.yyz.redhat.com
Thu Aug 28 13:16:30 PDT 2008


changeset cf375df7c7b7 in /hg/pulseaudio
details: http://icedtea.classpath.org/hg/pulseaudio?cmd=changeset;node=cf375df7c7b7
description:
	added sourcePort

diffstat:

1 file changed, 92 insertions(+)
src/java/org/classpath/icedtea/pulseaudio/PulseAudioSourcePort.java |   92 ++++++++++

diffs (96 lines):

diff -r f489a16be6f1 -r cf375df7c7b7 src/java/org/classpath/icedtea/pulseaudio/PulseAudioSourcePort.java
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/java/org/classpath/icedtea/pulseaudio/PulseAudioSourcePort.java	Thu Aug 28 16:16:38 2008 -0400
@@ -0,0 +1,92 @@
+package org.classpath.icedtea.pulseaudio;
+
+import javax.sound.sampled.Control;
+import javax.sound.sampled.LineListener;
+import javax.sound.sampled.LineUnavailableException;
+import javax.sound.sampled.Port;
+import javax.sound.sampled.Control.Type;
+
+public class PulseAudioSourcePort implements Port {
+	
+	private String name;
+	private long contextPointer;
+	private EventLoop eventLoop;
+	
+	public PulseAudioSourcePort(String name, EventLoop eventLoop) {
+		this.name = name;
+		this.contextPointer = eventLoop.getContextPointer();
+		this.eventLoop = eventLoop;
+		System.out.println("Opened Source Port" + name);
+	}
+
+	@Override
+	public void addLineListener(LineListener listener) {
+		// TODO Auto-generated method stub
+	}
+
+	@Override
+	public void close() {
+		Operation operation;
+
+		synchronized (eventLoop.threadLock) {
+			operation = new Operation(nativeClose());
+		}
+
+		operation.waitForCompletion();
+		operation.releaseReference();
+		
+	}
+	
+	private native int nativeClose();
+
+	@Override
+	public Control getControl(Type control) {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	@Override
+	public Control[] getControls() {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	@Override
+	public javax.sound.sampled.Line.Info getLineInfo() {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	@Override
+	public boolean isControlSupported(Type control) {
+		// TODO Auto-generated method stub
+		return false;
+	}
+
+	@Override
+	public boolean isOpen() {
+		// TODO Auto-generated method stub
+		return false;
+	}
+
+	@Override
+	public void open() throws LineUnavailableException {
+		Operation operation;
+
+		synchronized (eventLoop.threadLock) {
+			operation = new Operation(nativeOpen());
+		}
+
+		operation.waitForCompletion();
+		operation.releaseReference();
+	}
+	
+	private native int nativeOpen();
+
+	@Override
+	public void removeLineListener(LineListener listener) {
+		// TODO Auto-generated method stub
+		
+	}
+
+}



More information about the distro-pkg-dev mailing list