summaryrefslogtreecommitdiff
path: root/libs/vamp-plugins/AmplitudeFollower.cpp
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2015-10-04 15:11:15 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2015-10-04 15:11:15 -0400
commit4178db5f632721eefb58c42d684fc10f8f4fb9da (patch)
treea549de293b1a4dd6b5c3f5070f44f95e5e829f46 /libs/vamp-plugins/AmplitudeFollower.cpp
parent4dc63966f0872efe768dad61eb9b8785d06b92d1 (diff)
globally remove all trailing whitespace from .cpp and .hpp files missed by previous commit
Diffstat (limited to 'libs/vamp-plugins/AmplitudeFollower.cpp')
-rw-r--r--libs/vamp-plugins/AmplitudeFollower.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/libs/vamp-plugins/AmplitudeFollower.cpp b/libs/vamp-plugins/AmplitudeFollower.cpp
index c6f7bc0938..c4b2e56b62 100644
--- a/libs/vamp-plugins/AmplitudeFollower.cpp
+++ b/libs/vamp-plugins/AmplitudeFollower.cpp
@@ -7,7 +7,7 @@
Centre for Digital Music, Queen Mary, University of London.
This file copyright 2006 Dan Stowell.
-
+
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
@@ -109,7 +109,7 @@ AmplitudeFollower::initialise(size_t channels, size_t stepSize, size_t blockSize
m_stepSize = std::min(stepSize, blockSize);
- // Translate the coefficients
+ // Translate the coefficients
// from their "convenient" 60dB convergence-time values
// to real coefficients
m_clampcoef = m_clampcoef==0.0 ? 0.0 : exp(log(0.1)/(m_clampcoef * m_inputSampleRate));
@@ -158,9 +158,9 @@ AmplitudeFollower::getParameterDescriptors() const
att.maxValue = 1.f;
att.defaultValue = 0.01f;
att.isQuantized = false;
-
+
list.push_back(att);
-
+
ParameterDescriptor dec;
dec.identifier = "release";
dec.name = "Release time";
@@ -170,9 +170,9 @@ AmplitudeFollower::getParameterDescriptors() const
dec.maxValue = 1.f;
dec.defaultValue = 0.01f;
dec.isQuantized = false;
-
+
list.push_back(dec);
-
+
return list;
}