small cleanup

This commit is contained in:
Brad Hefta-Gaub 2017-03-08 17:30:44 -08:00
parent 1bdad89cbe
commit 60daaba525
2 changed files with 0 additions and 5 deletions

View file

@ -58,8 +58,6 @@ void AudioNoiseGate::removeDCOffset(int16_t* samples, int numSamples) {
}
}
#include <QDebug>
void AudioNoiseGate::gateSamples(int16_t* samples, int numSamples) {
//
// Impose Noise Gate

View file

@ -24,10 +24,7 @@ public:
void removeDCOffset(int16_t* samples, int numSamples);
bool clippedInLastFrame() const { return _didClipInLastFrame; }
bool closedInLastFrame() const { return _closedInLastFrame; }
bool isOpen() const { return _isOpen; }
float getMeasuredFloor() const { return _measuredFloor; }
float getLastLoudness() const { return _lastLoudness; }