changeset in /hg/pulseaudio: 2008-09-30 Omair Majid <omajid at redh...
Omair Majid
omajid at redhat.com
Tue Sep 30 11:44:01 PDT 2008
changeset 55bb87d31a6f in /hg/pulseaudio
details: http://icedtea.classpath.org/hg/pulseaudio?cmd=changeset;node=55bb87d31a6f
description:
2008-09-30 Omair Majid <omajid at redhat.com>
* src/java/org/classpath/icedtea/pulseaudio/PulseAudioTargetDataLine.java
(open): Initialize variables so reopening a line still leaves it in a
valid state.
(read): Fixed comments.
(flush): Also clear the fragmentBuffer.
diffstat:
1 file changed, 15 insertions(+), 6 deletions(-)
src/java/org/classpath/icedtea/pulseaudio/PulseAudioTargetDataLine.java | 21 +++++++---
diffs (81 lines):
diff -r 609dcbe6d5b8 -r 55bb87d31a6f src/java/org/classpath/icedtea/pulseaudio/PulseAudioTargetDataLine.java
--- a/src/java/org/classpath/icedtea/pulseaudio/PulseAudioTargetDataLine.java Tue Sep 30 11:49:05 2008 -0400
+++ b/src/java/org/classpath/icedtea/pulseaudio/PulseAudioTargetDataLine.java Tue Sep 30 12:17:33 2008 -0400
@@ -90,8 +90,13 @@ public class PulseAudioTargetDataLine ex
super.open(format, bufferSize);
+ /* initialize all the member variables */
framesSinceOpen = 0;
-
+ fragmentBuffer = null;
+ flushed = false;
+ drained = false;
+
+ /* add this open line to the mixer */
PulseAudioMixer parentMixer = PulseAudioMixer.getInstance();
parentMixer.addTargetLine(this);
}
@@ -115,6 +120,8 @@ public class PulseAudioTargetDataLine ex
@Override
public int read(byte[] data, int offset, int length) {
+ /* check state and inputs */
+
if (!isOpen) {
throw new IllegalStateException("must call open() before read()");
}
@@ -134,6 +141,8 @@ public class PulseAudioTargetDataLine ex
throw new ArrayIndexOutOfBoundsException("index: "
+ (length + offset) + " array size: " + data.length);
}
+
+ /* everything ok */
int position = offset;
int remainingLength = length;
@@ -246,10 +255,6 @@ public class PulseAudioTargetDataLine ex
// all the data should have been played by now
assert (sizeRead == length);
- /*
- * FIXME when the stream is flushed() etc, instead of returning length
- * this should unblock and return the the size of data written so far
- */
return sizeRead;
}
@@ -276,6 +281,7 @@ public class PulseAudioTargetDataLine ex
try {
Thread.sleep(100);
} catch (InterruptedException e) {
+ // do nothing
}
}
@@ -287,6 +293,7 @@ public class PulseAudioTargetDataLine ex
throw new IllegalStateException("Line must be open");
}
+ /* flush the buffer on pulseaudio's side */
Operation operation;
synchronized (eventLoop.threadLock) {
operation = stream.flush();
@@ -296,6 +303,8 @@ public class PulseAudioTargetDataLine ex
synchronized (this) {
flushed = true;
+ /* flush the partial fragment we stored */
+ fragmentBuffer = null;
}
}
@@ -324,7 +333,7 @@ public class PulseAudioTargetDataLine ex
/*
* 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
+ * it to stop. There are no buffer underruns/overflows or anything so we
* will just fire the LineEvents manually
*/
More information about the distro-pkg-dev
mailing list