Searched refs:getChannels (Results 1 - 25 of 73) sorted by relevance

123

/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DModelOscillator.java35 public int getChannels(); method in interface:ModelOscillator
H A DSoftAudioBuffer.java103 int framesize_pc = (format.getFrameSize() / format.getChannels());
108 if (format.getChannels() == 1) {
112 if (channel >= format.getChannels())
114 int z_stepover = format.getChannels() * framesize_pc;
H A DToolkit.java184 if (format.getChannels() <= 0) {
186 +((format.getChannels()==-1)?
187 "NOT_SPECIFIED":String.valueOf(format.getChannels())));
201 || (format.getChannels() <= 0)) {
221 af.getChannels(),
222 af.getChannels() * 2,
H A DAlawCodec.java149 sourceFormat.getChannels(),
150 2*sourceFormat.getChannels(),
160 sourceFormat.getChannels(),
161 sourceFormat.getChannels(),
223 inputFormat.getChannels(),
224 inputFormat.getChannels(),
234 inputFormat.getChannels(),
235 inputFormat.getChannels()*2,
242 inputFormat.getChannels(),
243 inputFormat.getChannels()*
[all...]
H A DUlawCodec.java138 sourceFormat.getChannels(),
139 2*sourceFormat.getChannels(),
147 sourceFormat.getChannels(),
148 sourceFormat.getChannels(),
209 inputFormat.getChannels(),
210 inputFormat.getChannels(),
220 inputFormat.getChannels(),
221 inputFormat.getChannels()*2,
229 inputFormat.getChannels(),
230 inputFormat.getChannels()*
[all...]
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftSynthesizer/
H A DGetChannels.java27 @summary Test SoftSynthesizer getChannels method */
55 assertTrue(synth.getChannels() != null);
56 assertTrue(synth.getChannels().length == 16);
57 MidiChannel[] channels = synth.getChannels();
H A DGetPropertyInfo.java66 assertTrue(format.getChannels() == 1);
79 assertTrue(format.getChannels() == 4);
93 assertTrue(format.getChannels() == 3);
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DAudioFormat.java327 public int getChannels() { method in class:AudioFormat
450 && (format.getChannels() == AudioSystem.NOT_SPECIFIED
451 || format.getChannels() == getChannels())
496 if (getChannels() == 1) {
499 if (getChannels() == 2) {
502 if (getChannels() == AudioSystem.NOT_SPECIFIED) {
505 sChannels = ""+getChannels()+" channels, ";
/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DSynthesizer.java120 public MidiChannel[] getChannels(); method in interface:Synthesizer
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftChannel/
H A DChannelPressure.java50 MidiChannel channel = soft.synth.getChannels()[0];
H A DLocalControl.java50 MidiChannel channel = soft.synth.getChannels()[0];
H A DMono.java50 MidiChannel channel = soft.synth.getChannels()[0];
H A DMute.java50 MidiChannel channel = soft.synth.getChannels()[0];
H A DOmni.java50 MidiChannel channel = soft.synth.getChannels()[0];
H A DPitchBend.java50 MidiChannel channel = soft.synth.getChannels()[0];
H A DProgramChange.java50 MidiChannel channel = soft.synth.getChannels()[0];
H A DSolo.java50 MidiChannel channel = soft.synth.getChannels()[0];
H A DAllNotesOff.java50 MidiChannel channel = soft.synth.getChannels()[0];
H A DAllSoundOff.java50 MidiChannel channel = soft.synth.getChannels()[0];
H A DController.java50 MidiChannel channel = soft.synth.getChannels()[0];
H A DNoteOff.java50 MidiChannel channel = soft.synth.getChannels()[0];
H A DNoteOff2.java50 MidiChannel channel = soft.synth.getChannels()[0];
H A DNoteOn.java50 MidiChannel channel = soft.synth.getChannels()[0];
H A DPolyPressure.java50 MidiChannel channel = soft.synth.getChannels()[0];
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftReceiver/
H A DClose.java50 MidiChannel channel = soft.synth.getChannels()[0];

Completed in 185 milliseconds

123