* Avoid virtual method hiding warnings

* Avoid potential deadlock in thread join when processing has been abandoned
This commit is contained in:
Chris Cannam
2009-02-26 22:26:02 +00:00
parent c5a293da33
commit 00ff759247
12 changed files with 43 additions and 5 deletions

View File

@@ -53,7 +53,7 @@ SilentAudioCurve::process(const float *R__ mag, size_t)
}
float
SilentAudioCurve::process(const double *R__ mag, size_t)
SilentAudioCurve::processDouble(const double *R__ mag, size_t)
{
const int hs = m_windowSize / 2;
static double threshold = pow(10.0, -6);