changeset in /hg/pulseaudio: 2008-08-12 Omair Majid <omajid at redh...
Omair Majid
omajid at redhat.com
Tue Aug 12 07:51:15 PDT 2008
changeset 748e7984cd83 in /hg/pulseaudio
details: http://icedtea.classpath.org/hg/pulseaudio?cmd=changeset;node=748e7984cd83
description:
2008-08-12 Omair Majid <omajid at redhat.com>
* src/java/org/classpath/icedtea/pulseaudio/PulseAudioSourceDataLine.java: fixed getControl(); implemented isControlSupported()
* unittests/org/classpath/icedtea/pulseaudio/PulseSourceDataLineTest.java: added two tests for checking controls
diffstat:
2 files changed, 30 insertions(+), 15 deletions(-)
src/java/org/classpath/icedtea/pulseaudio/PulseAudioSourceDataLine.java | 14 ++--
unittests/org/classpath/icedtea/pulseaudio/PulseSourceDataLineTest.java | 31 ++++++----
diffs (106 lines):
diff -r 3887b2fc72a5 -r 748e7984cd83 src/java/org/classpath/icedtea/pulseaudio/PulseAudioSourceDataLine.java
--- a/src/java/org/classpath/icedtea/pulseaudio/PulseAudioSourceDataLine.java Tue Aug 12 10:09:01 2008 -0400
+++ b/src/java/org/classpath/icedtea/pulseaudio/PulseAudioSourceDataLine.java Tue Aug 12 10:31:11 2008 -0400
@@ -47,7 +47,6 @@ import java.util.concurrent.Semaphore;
import javax.sound.sampled.AudioFormat;
import javax.sound.sampled.AudioSystem;
-import javax.sound.sampled.BooleanControl;
import javax.sound.sampled.Control;
import javax.sound.sampled.DataLine;
import javax.sound.sampled.LineEvent;
@@ -395,12 +394,14 @@ public class PulseAudioSourceDataLine im
defaultFormat = new AudioFormat(Encoding.PCM_UNSIGNED, 22050, 8, 2,
2, AudioSystem.NOT_SPECIFIED, false);
}
-
+
open(defaultFormat, DEFAULT_BUFFER_SIZE);
}
@Override
public int write(byte[] data, int offset, int length) {
+
+ // TODO add check that the data is an integral number of frames
int position = offset;
int remainingLength = length;
@@ -543,8 +544,7 @@ public class PulseAudioSourceDataLine im
public Control getControl(Type control) {
for (int i = 0; i < controls.length; i++) {
- if (controls[i].getType() == control) {
-
+ if (controls[i].getType().getClass() == control.getClass()) {
return controls[i];
}
}
@@ -561,7 +561,11 @@ public class PulseAudioSourceDataLine im
}
public boolean isControlSupported(Type control) {
- // TODO Auto-generated method stub
+ for (Control myControl: controls) {
+ if (myControl.getType().getClass() == control.getClass()) {
+ return true;
+ }
+ }
return false;
}
diff -r 3887b2fc72a5 -r 748e7984cd83 unittests/org/classpath/icedtea/pulseaudio/PulseSourceDataLineTest.java
--- a/unittests/org/classpath/icedtea/pulseaudio/PulseSourceDataLineTest.java Tue Aug 12 10:09:01 2008 -0400
+++ b/unittests/org/classpath/icedtea/pulseaudio/PulseSourceDataLineTest.java Tue Aug 12 10:31:11 2008 -0400
@@ -106,7 +106,8 @@ public class PulseSourceDataLineTest {
@Test
public void testFindLineWithFormat() throws LineUnavailableException {
- System.out.println("This test tries to find a line with a valid format");
+ System.out
+ .println("This test tries to find a line with a valid format");
AudioFormat wantedFormat = new AudioFormat(
AudioFormat.Encoding.PCM_UNSIGNED, 44100f, 8, 1, 1, 10, true);
System.out.println(wantedFormat);
@@ -131,16 +132,8 @@ public class PulseSourceDataLineTest {
@Test
public void testVolumeAndMute() throws Exception {
- Mixer.Info mixerInfos[] = AudioSystem.getMixerInfo();
- Mixer.Info selectedMixerInfo = null;
- for (Mixer.Info info : mixerInfos) {
- if (info.getName().contains("PulseAudio")) {
- selectedMixerInfo = info;
- System.out.println(selectedMixerInfo);
- }
- }
- Mixer selectedMixer = AudioSystem.getMixer(selectedMixerInfo);
+ Mixer selectedMixer = mixer;
selectedMixer.open();
SourceDataLine line = (SourceDataLine) selectedMixer
@@ -179,6 +172,24 @@ public class PulseSourceDataLineTest {
}
+ @Test
+ public void testFindControl() throws LineUnavailableException {
+ SourceDataLine sourceLine = (SourceDataLine) mixer
+ .getLine(new Line.Info(SourceDataLine.class));
+ Assert.assertTrue(sourceLine.getControls().length > 0);
+ }
+
+
+ @Test
+ public void testSupportedControls() throws LineUnavailableException {
+ SourceDataLine sourceLine = (SourceDataLine) mixer
+ .getLine(new Line.Info(SourceDataLine.class));
+ sourceLine.open();
+ Assert.assertTrue(sourceLine.isControlSupported(FloatControl.Type.VOLUME));
+ Assert.assertTrue(sourceLine.isControlSupported(BooleanControl.Type.MUTE));
+ }
+
+
@After
public void tearDown() throws Exception {
More information about the distro-pkg-dev
mailing list