Skip to content

Commit

Permalink
add shepard phaser (#1205)
Browse files Browse the repository at this point in the history
add shepard phaser
  • Loading branch information
Andreya-Autumn authored Aug 28, 2024
1 parent 706866a commit 277ae8a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libs/sst/sst-effects
2 changes: 1 addition & 1 deletion libs/sst/sst-jucegui
1 change: 1 addition & 0 deletions src/dsp/processor/processor.h
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ enum ProcessorType
proct_SurgeFilters,
proct_Tremolo,
proct_Phaser,
proct_shepard,
proct_Chorus,
proct_volpan,
proct_Compressor,
Expand Down
4 changes: 4 additions & 0 deletions src/dsp/processor/processor_defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@
#include "sst/voice-effects/modulation/FMFilter.h"
#include "sst/voice-effects/modulation/Tremolo.h"
#include "sst/voice-effects/modulation/Phaser.h"
#include "sst/voice-effects/modulation/ShepardPhaser.h"
#include "sst/voice-effects/modulation/NoiseAM.h"
#include "sst/voice-effects/delay/Chorus.h"
#include "sst/voice-effects/utilities/VolumeAndPan.h"
Expand Down Expand Up @@ -202,6 +203,9 @@ DEFINE_PROC(Tremolo, sst::voice_effects::modulation::Tremolo<SCXTVFXConfig<1>>,
DEFINE_PROC(Phaser, sst::voice_effects::modulation::Phaser<SCXTVFXConfig<1>>,
sst::voice_effects::modulation::Phaser<SCXTVFXConfig<2>>, proct_Phaser, "Phaser",
"Modulation", "modulated-phaser");
DEFINE_PROC(ShepardPhaser, sst::voice_effects::modulation::ShepardPhaser<SCXTVFXConfig<1>>,
sst::voice_effects::modulation::ShepardPhaser<SCXTVFXConfig<2>>, proct_shepard,
"Shepard Phaser", "Modulation", "shepard");
DEFINE_PROC(Chorus, sst::voice_effects::delay::Chorus<SCXTVFXConfig<1>>,
sst::voice_effects::delay::Chorus<SCXTVFXConfig<2>>, proct_Chorus, "Chorus",
"Modulation", "voice-chorus", dsp::surgeSincTable);
Expand Down

0 comments on commit 277ae8a

Please sign in to comment.