Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
Replace `sampleFrame` with the new class `SampleFrame`.
  • Loading branch information
michaelgregorius committed Aug 18, 2024
1 parent 87681f2 commit 2f62e6a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/WaveAnalyzer/WaveAnalyzer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ WaveAnalyzerEffect::~WaveAnalyzerEffect()
{
}

bool WaveAnalyzerEffect::processAudioBuffer(sampleFrame *buffer, const fpp_t frameCount)
bool WaveAnalyzerEffect::processAudioBuffer(SampleFrame *buffer, const fpp_t frameCount)
{
if (!isRunning() || !isEnabled()) { return false; }

Expand Down
2 changes: 1 addition & 1 deletion plugins/WaveAnalyzer/WaveAnalyzer.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class WaveAnalyzerEffect : public Effect
WaveAnalyzerEffect(Model *parent, const Descriptor::SubPluginFeatures::Key *key);
virtual ~WaveAnalyzerEffect();

virtual bool processAudioBuffer(sampleFrame *buffer, const fpp_t frameCount);
virtual bool processAudioBuffer(SampleFrame *buffer, const fpp_t frameCount);

virtual WaveAnalyzerControls* controls()
{
Expand Down

0 comments on commit 2f62e6a

Please sign in to comment.