Package net.paulhertz.pixelaudio.sampler
Enum Class PASharedBufferSampler.MixProfile
java.lang.Object
java.lang.Enum<PASharedBufferSampler.MixProfile>
net.paulhertz.pixelaudio.sampler.PASharedBufferSampler.MixProfile
- All Implemented Interfaces:
Serializable,Comparable<PASharedBufferSampler.MixProfile>,Constable
- Enclosing class:
- PASharedBufferSampler
Mix-density normalization profiles for polyphonic sampler output,
used to control noise and distortion. Described in example code
TutorialOne_03_Drawing,
which allows you to listen to the effects of different MixProfiles.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionModerate normalization for general playback.Stronger normalization for dense voice clusters.Minimal normalization and limiting. -
Field Summary
FieldsModifier and TypeFieldDescriptionfinal floatsmoothing coefficient for mixNormfinal floatdrive for softClipSoftsignfinal floattargetNorm = 1 / activeWeight^normExponentfinal floatHow much a releasing voice contributes to density. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateMixProfile(float normExponent, float alpha, float drive, float releaseWeight) -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static PASharedBufferSampler.MixProfile[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TRANSPARENT
Minimal normalization and limiting. -
BALANCED
Moderate normalization for general playback. -
PROTECTIVE
Stronger normalization for dense voice clusters.
-
-
Field Details
-
normExponent
public final float normExponenttargetNorm = 1 / activeWeight^normExponent -
alpha
public final float alphasmoothing coefficient for mixNorm -
drive
public final float drivedrive for softClipSoftsign -
releaseWeight
public final float releaseWeightHow much a releasing voice contributes to density. 1.0 = count fully like active voices 0.0 = ignore release tails in density estimate
-
-
Constructor Details
-
MixProfile
private MixProfile(float normExponent, float alpha, float drive, float releaseWeight)
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-