use of javazoom.jl.decoder.Decoder in project JWildfire by thargor6.
the class JWFAudioDevice method getAudioFormat.
protected AudioFormat getAudioFormat() {
if (audioFormat == null) {
Decoder decoder = getDecoder();
audioFormat = new AudioFormat(decoder.getOutputFrequency(), 16, decoder.getOutputChannels(), true, false);
}
return audioFormat;
}
Aggregations