Skip to content

Commit

Permalink
JACK: ignore set_portamento_freq for live decoder source
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 4b309ff commit 1d9fe1d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions jack/smsimplejackplayer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ class Source : public LiveDecoderSource
void retrigger (int, float, int) override;
Audio* audio() override;
bool rt_audio_block (size_t index, RTAudioBlock& out_block) override;
void set_portamento_freq (float freq) override;
};

Source::Source (Audio *audio) :
Expand Down Expand Up @@ -52,6 +53,12 @@ Source::rt_audio_block (size_t index, RTAudioBlock& out_block)
}
}

void
Source::set_portamento_freq (float freq)
{
// ignore
}

}

static int
Expand Down

0 comments on commit 1d9fe1d

Please sign in to comment.