Methods Summary |
---|
public abstract javax.sound.sampled.Mixer | getMixer(javax.sound.sampled.Mixer$Info info)Obtains an instance of the mixer represented by the info object.
|
public abstract javax.sound.sampled.Mixer$Info[] | getMixerInfo()Obtains the set of info objects representing the mixer
or mixers provided by this MixerProvider.
|
public boolean | isMixerSupported(javax.sound.sampled.Mixer$Info info)Indicates whether the mixer provider supports the mixer represented by
the specified mixer info object.
Mixer.Info infos[] = getMixerInfo();
for(int i=0; i<infos.length; i++){
if( info.equals( infos[i] ) ) {
return true;
}
}
return false;
|