changeset in /hg/pulseaudio: 2008-09-23 Omair Majid <omajid at redh...
Omair Majid
omajid at redhat.com
Tue Sep 23 14:23:38 PDT 2008
changeset 438aa072a80d in /hg/pulseaudio
details: http://icedtea.classpath.org/hg/pulseaudio?cmd=changeset;node=438aa072a80d
description:
2008-09-23 Omair Majid <omajid at redhat.com>
* src/java/org/classpath/icedtea/pulseaudio/PulseAudioClip.java
Merged changes.
diffstat:
3 files changed, 50 insertions(+), 2 deletions(-)
README | 6 +
src/java/org/classpath/icedtea/pulseaudio/PulseAudioClip.java | 2
unittests/org/classpath/icedtea/pulseaudio/PulseAudioClipTest.java | 44 ++++++++++
diffs (83 lines):
diff -r 2d384ad19c3e -r 438aa072a80d README
--- a/README Tue Sep 23 17:01:26 2008 -0400
+++ b/README Tue Sep 23 17:23:27 2008 -0400
@@ -19,6 +19,10 @@ Where does it come from?
Where does it come from?
All of the code was written by the authors
-The sound files (new.wav and logout.wav) were taken from
+The sound files new.wav and logout.wav were taken from
http://websvn.kde.org/branches/KDE/4.0/kdeartwork/sounds/ (and renamed).
They are licensed by the copyright holders as GPLv2.
+
+The sound file error.wav is part of gnome-audio
+http://ftp.gnome.org/pub/gnome/sources/gnome-audio/2.22/gnome-audio-2.22.2.tar.bz2
+It is licensed under the LGPL by the copyright holders.
diff -r 2d384ad19c3e -r 438aa072a80d src/java/org/classpath/icedtea/pulseaudio/PulseAudioClip.java
--- a/src/java/org/classpath/icedtea/pulseaudio/PulseAudioClip.java Tue Sep 23 17:01:26 2008 -0400
+++ b/src/java/org/classpath/icedtea/pulseaudio/PulseAudioClip.java Tue Sep 23 17:23:27 2008 -0400
@@ -81,7 +81,7 @@ public class PulseAudioClip extends Puls
@Override
public void run() {
- while (loopsLeft >= 0) {
+ while (true) {
writeFrames(currentFrame, endFrame + 1);
if (Thread.interrupted()) {
// Thread.currentThread().interrupt();
diff -r 2d384ad19c3e -r 438aa072a80d testsounds/error.wav
Binary file testsounds/error.wav has changed
diff -r 2d384ad19c3e -r 438aa072a80d unittests/org/classpath/icedtea/pulseaudio/PulseAudioClipTest.java
--- a/unittests/org/classpath/icedtea/pulseaudio/PulseAudioClipTest.java Tue Sep 23 17:01:26 2008 -0400
+++ b/unittests/org/classpath/icedtea/pulseaudio/PulseAudioClipTest.java Tue Sep 23 17:23:27 2008 -0400
@@ -138,6 +138,50 @@ public class PulseAudioClipTest {
clip.close();
}
+
+
+ @Test
+ public void testLoopContinuously() throws LineUnavailableException,
+ IOException, UnsupportedAudioFileException, InterruptedException {
+ System.out
+ .println("This tests loop(LOOP_CONTINUOUSLY) on the Clip");
+ final Clip clip = (Clip) mixer.getLine(new Line.Info(Clip.class));
+ File soundFile = new File("testsounds/error.wav");
+ AudioInputStream audioInputStream = AudioSystem
+ .getAudioInputStream(soundFile);
+ clip.open(audioInputStream);
+
+ clip.setLoopPoints((int) (clip.getFrameLength() / 4), (int) (clip
+ .getFrameLength() / 2));
+ clip.loop(Clip.LOOP_CONTINUOUSLY);
+
+ Runnable blocker = new Runnable() {
+
+ @Override
+ public void run() {
+ clip.drain();
+ }
+
+ };
+
+ Thread th = new Thread(blocker);
+ th.start();
+ th.join(10000);
+
+ if (!th.isAlive()) {
+ clip.close();
+ Assert.fail("LOOP_CONTINUOUSLY doesnt seem to work");
+ }
+
+ clip.stop();
+ th.join(500);
+ if ( th.isAlive()) {
+ clip.close();
+ Assert.fail("stopping LOOP_CONTINUOSLY failed");
+ }
+
+ clip.close();
+ }
@Test
public void testIsActiveAndIsOpen() throws LineUnavailableException,
More information about the distro-pkg-dev
mailing list