Skip to content

Commit

Permalink
LIB: MorphSourceModule: ignore set_portamento_freq() for now
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Westerfeld <[email protected]>
  • Loading branch information
swesterfeld committed Apr 10, 2024
1 parent 1d9fe1d commit 407aa61
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/smmorphsourcemodule.cc
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@ SimpleWavSetSource::rt_audio_block (size_t index, RTAudioBlock& out_block)
}
}

void
SimpleWavSetSource::set_portamento_freq (float freq)
{
// FIXME: support formant correction?
}

MorphSourceModule::MorphSourceModule (MorphPlanVoice *voice) :
MorphOperatorModule (voice)
{
Expand Down
1 change: 1 addition & 0 deletions lib/smmorphsourcemodule.hh
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ public:
void retrigger (int channel, float freq, int midi_velocity) override;
Audio *audio() override;
bool rt_audio_block (size_t index, RTAudioBlock& out_block) override;
void set_portamento_freq (float freq) override;
};

class MorphSourceModule : public MorphOperatorModule
Expand Down

0 comments on commit 407aa61

Please sign in to comment.