* 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

@@ -43,5 +43,11 @@ ConstantAudioCurve::process(const float *R__, size_t)
return 1.f;
}
float
ConstantAudioCurve::processDouble(const double *R__, size_t)
{
return 1.f;
}
}