1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
|
/*
* Copyright (c) 2004, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
import javax.sound.sampled.AudioFormat;
import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.DataLine;
import javax.sound.sampled.Line;
import javax.sound.sampled.Mixer;
/**
* @test
* @bug 5013897
* @summary Verify that plughw: provides mono and 8-bit lines
*/
public class PlugHwMonoAnd8bitAvailable {
static int failed = 0;
static int testedFormats = 0;
public static void main(String[] args) throws Exception {
out("5013897: Verify that plughw: provides mono and 8-bit lines");
Mixer.Info[] aInfos = AudioSystem.getMixerInfo();
for (int i = 0; i < aInfos.length; i++) {
try {
Mixer mixer = AudioSystem.getMixer(aInfos[i]);
out("Mixer "+aInfos[i]);
if (aInfos[i].getName().contains("plughw")) {
checkLines(mixer, mixer.getSourceLineInfo());
checkLines(mixer, mixer.getTargetLineInfo());
} else {
out(" -> not plughw, ignored.");
}
} catch (Exception e) {
out("Unexpected exception when getting a mixer: "+e);
}
}
if (testedFormats == 0) {
out("[No appropriate lines available] - cannot exercise this test.");
} else {
if (failed>0) {
throw new Exception("Test FAILED!");
}
out("Successfully verified "+testedFormats+" formats.");
out("Test passed");
}
}
public static void checkLines(Mixer mixer, Line.Info[] infos) {
for (int i = 0; i<infos.length; i++) {
try {
System.out.println(" Line "+infos[i]+" (max. "+mixer.getMaxLines(infos[i])+" simultaneously): ");
if (infos[i] instanceof DataLine.Info) {
DataLine.Info info = (DataLine.Info) infos[i];
int thisTestedFormats = testedFormats;
int thisFailed = failed;
AudioFormat[] formats = info.getFormats();
for (int f = 0; f < formats.length; f++) {
if (formats[f].getEncoding().equals(AudioFormat.Encoding.PCM_SIGNED)
|| formats[f].getEncoding().equals(AudioFormat.Encoding.PCM_UNSIGNED)) {
try {
if (formats[f].getSampleSizeInBits() > 16) {
// if a bit size larger than 16 is available, also 16-bit must be there
checkFormat(formats, getOtherBits(formats[f], 16));
} else
if (formats[f].getSampleSizeInBits() > 8) {
// if a bit size larger than 8 is available, also 8-bit must be there
checkFormat(formats, getOtherBits(formats[f], 8));
}
if (formats[f].getChannels() > 2) {
// if more than 2 channels, also 2 channels must be there
checkFormat(formats, getOtherChannels(formats[f], 2));
} else
if (formats[f].getChannels() > 1) {
// if more than 1 channel, also 1 channel must be there
checkFormat(formats, getOtherChannels(formats[f], 1));
}
} catch (Exception e1) {
out(" Unexpected exception when getting a format: "+e1);
}
}
}
if (testedFormats - thisTestedFormats == 0) {
out(" -->could not test any formats");
} else if (failed - thisFailed == 0) {
out(" -->"+(testedFormats - thisTestedFormats)+" formats tested OK");
}
} else {
out(" --> not a DataLine");
}
} catch (Exception e) {
out(" Unexpected exception when getting a line: "+e);
}
}
}
public static void checkFormat(AudioFormat[] formats, AudioFormat format) {
testedFormats++;
for (int i = 0; i < formats.length; i++) {
if (formats[i].matches(format)) {
return;
}
}
out(" ## expected this format: "+format
+" ("+format.getChannels()+" channels, "
+"frameSize="+format.getFrameSize()+", "
+(format.isBigEndian()?"big endian":"little endian")
+")");
failed++;
}
// only works for PCM encodings
public static AudioFormat getOtherBits(AudioFormat format, int newBits) {
boolean isSigned = format.getEncoding().equals(AudioFormat.Encoding.PCM_SIGNED);
return new AudioFormat(format.getSampleRate(),
newBits,
format.getChannels(),
isSigned,
(newBits>8)?format.isBigEndian():false);
}
// only works for PCM encodings
public static AudioFormat getOtherChannels(AudioFormat format, int newChannels) {
int newFrameSize;
if (newChannels <= 0 || format.getChannels() <= 0 || format.getFrameSize() <= 0) {
newFrameSize = -1;
} else {
newFrameSize = format.getFrameSize() / format.getChannels() * newChannels;
}
return new AudioFormat(format.getEncoding(),
format.getSampleRate(),
format.getSampleSizeInBits(),
newChannels,
newFrameSize,
format.getFrameRate(),
format.isBigEndian());
}
static void out(String s) {
System.out.println(s); System.out.flush();
}
}
|