Package javazoom.jl.decoder
Class Decoder.Params
- java.lang.Object
-
- javazoom.jl.decoder.Decoder.Params
-
- All Implemented Interfaces:
java.lang.Cloneable
- Enclosing class:
- Decoder
public static class Decoder.Params extends java.lang.Object implements java.lang.CloneableTheParamsclass presents the customizable aspects of the decoder.Instances of this class are not thread safe.
-
-
Constructor Summary
Constructors Constructor Description Params()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Objectclone()EqualizergetInitialEqualizerSettings()Retrieves the equalizer settings that the decoder's equalizer will be initialized from.OutputChannelsgetOutputChannels()voidsetOutputChannels(OutputChannels out)
-
-
-
Method Detail
-
clone
public java.lang.Object clone()
- Overrides:
clonein classjava.lang.Object
-
setOutputChannels
public void setOutputChannels(OutputChannels out)
-
getOutputChannels
public OutputChannels getOutputChannels()
-
getInitialEqualizerSettings
public Equalizer getInitialEqualizerSettings()
Retrieves the equalizer settings that the decoder's equalizer will be initialized from.The
Equalizerinstance returned cannot be changed in real time to affect the decoder output as it is used only to initialize the decoders EQ settings. To affect the decoder's output in realtime, use the Equalizer returned from the getEqualizer() method on the decoder.- Returns:
- The
Equalizerused to initialize the EQ settings of the decoder.
-
-