changeset in /hg/pulseaudio: 2009-09-11 Omair Majid <omajid at redh...

Omair Majid omajid at redhat.com
Thu Sep 11 12:06:58 PDT 2008


changeset 850570c7af31 in /hg/pulseaudio
details: http://icedtea.classpath.org/hg/pulseaudio?cmd=changeset;node=850570c7af31
description:
	2009-09-11 Omair Majid <omajid at redhat.com>

	    * src/java/org/classpath/icedtea/pulseaudio/PulseAudioTargetDataLine.java
	    Removed streamPointer - it is declared in parent class.
	    (start): New function. Manually fires START event for a TargetDataLine.
	    (stop): New function. Manually fires STOP event for TargetDataLine.

diffstat:

1 file changed, 24 insertions(+), 3 deletions(-)
src/java/org/classpath/icedtea/pulseaudio/PulseAudioTargetDataLine.java |   27 ++++++++--

diffs (50 lines):

diff -r 29f7e9dc42dd -r 850570c7af31 src/java/org/classpath/icedtea/pulseaudio/PulseAudioTargetDataLine.java
--- a/src/java/org/classpath/icedtea/pulseaudio/PulseAudioTargetDataLine.java	Thu Sep 11 14:40:42 2008 -0400
+++ b/src/java/org/classpath/icedtea/pulseaudio/PulseAudioTargetDataLine.java	Thu Sep 11 15:06:49 2008 -0400
@@ -38,6 +38,8 @@ package org.classpath.icedtea.pulseaudio
 package org.classpath.icedtea.pulseaudio;
 
 import javax.sound.sampled.AudioFormat;
+import javax.sound.sampled.AudioSystem;
+import javax.sound.sampled.LineEvent;
 import javax.sound.sampled.LineUnavailableException;
 import javax.sound.sampled.TargetDataLine;
 
@@ -45,9 +47,6 @@ public class PulseAudioTargetDataLine ex
 		TargetDataLine {
 
 	private long currentFramePosition = 0;
-
-	@SuppressWarnings("unused")
-	private byte[] streamPointer;
 
 	public PulseAudioTargetDataLine(EventLoop eventLoop, AudioFormat[] formats,
 			AudioFormat defaultFormat) {
@@ -168,4 +167,26 @@ public class PulseAudioTargetDataLine ex
 		return (long) (currentFramePosition / currentFormat.getFrameRate());
 	}
 
+	/*
+	 * A TargetData starts when we ask it to and continues playing until we ask
+	 * it to stop. there are no buffer underruns/overflows or anything so we
+	 * will just fire the LineEvents manually
+	 */
+
+	@Override
+	public void start() {
+		super.start();
+
+		fireLineEvent(new LineEvent(this, LineEvent.Type.START,
+				AudioSystem.NOT_SPECIFIED));
+	}
+
+	@Override
+	public void stop() {
+		super.stop();
+
+		fireLineEvent(new LineEvent(this, LineEvent.Type.STOP,
+				AudioSystem.NOT_SPECIFIED));
+	}
+
 }
\ No newline at end of file



More information about the distro-pkg-dev mailing list