Enum rfmod::DspType [] [src]

#[repr(C)]
pub enum DspType { Unknown, Mixer, Oscillator, LowPass, ITLowPass, HighPass, Echo, Flange, Distortion, Normalize, Parameq, PitchShift, Chorus, VSTPlugin, WinampPlugin, ITEcho, Compressor, SFXReverb, LowPassSimple, Delay, Tremolo, LADSPAPlugin, HighPassSimple, Hardware, ForceInt, }

These definitions can be used for creating FMOD defined special effects or DSP units. Used with Dsp::set_parameter and Dsp::get_parameter.

Variants

This unit was created via a non FMOD plugin so has an unknown purpose.

This unit does nothing but take inputs and mix them together then feed the result to the soundcard unit.

This unit generates sine/square/saw/triangle or noise tones.

This unit filters sound using a high quality, resonant lowpass filter algorithm but consumes more CPU time.

This unit filters sound using a resonant lowpass filter algorithm that is used in Impulse Tracker, but with limited Cutoff range (0 to 8060hz).

This unit filters sound using a resonant highpass filter algorithm.

This unit produces an echo on the sound and fades out at the desired rate.

This unit produces a flange effect on the sound.

This unit distorts the sound.

This unit normalizes or amplifies the sound to a certain level.

This unit attenuates or amplifies a selected frequency range.

This unit bends the pitch of a sound without changing the speed of playback.

This unit produces a chorus effect on the sound.

This unit allows the use of Steinberg VST plugins

This unit allows the use of Nullsoft Winamp plugins

This unit produces an echo on the sound and fades out at the desired rate as is used in Impulse Tracker.

This unit implements dynamic compression (linked multichannel, wideband)

This unit implements SFX reverb

This unit filters sound using a simple lowpass with no resonance, but has flexible Cutoff and is fast.

This unit produces different delays on individual channels of the sound.

This unit produces a tremolo / chopper effect on the sound.

This unit allows the use of LADSPA standard plugins.

This unit filters sound using a simple highpass with no resonance, but has flexible Cutoff and is fast.

Offset that platform specific FMOD_HARDWARE DSPs will start at.

Makes sure this enum is signed 32bit.

Trait Implementations

impl Clone for DspType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for DspType
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl PartialOrd for DspType
[src]

[src]

This method returns an ordering between self and other values if one exists. Read more

1.0.0
[src]

This method tests less than (for self and other) and is used by the < operator. Read more

1.0.0
[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

1.0.0
[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

1.0.0
[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Debug for DspType
[src]

[src]

Formats the value using the given formatter. Read more

impl Copy for DspType
[src]

Auto Trait Implementations

impl Send for DspType

impl Sync for DspType