Skip to content

Commit

Permalink
Merge pull request #4462 from daschuer/effects_refactoring_1
Browse files Browse the repository at this point in the history
Effects refactoring minor fixes
  • Loading branch information
Be-ing authored Oct 21, 2021
2 parents e817b69 + afc940c commit b96d24b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/effects/backends/builtin/autopaneffect.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ class RampedSample {
inline RampedSample()
: ramped(false),
maxDifference(1.0f),
currentValue(0),
initialized(false) {
}

Expand Down
1 change: 1 addition & 0 deletions src/effects/backends/builtin/reverbeffect.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ class ReverbGroupState : public EffectState {
public:
ReverbGroupState(const mixxx::EngineParameters& engineParameters)
: EffectState(engineParameters),
sampleRate(engineParameters.sampleRate()),
sendPrevious(0) {
}

Expand Down
1 change: 1 addition & 0 deletions src/engine/effects/message.h
Original file line number Diff line number Diff line change
Expand Up @@ -168,4 +168,5 @@ class EffectsRequestHandler {
virtual bool processEffectsRequest(
EffectsRequest& message,
EffectsResponsePipe* pResponsePipe) = 0;
virtual ~EffectsRequestHandler() = default;
};

0 comments on commit b96d24b

Please sign in to comment.