mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-30 18:37:40 +01:00
update qm-dsp library
This commit is contained in:
parent
2a27cc4758
commit
f68d2e06bc
100 changed files with 58968 additions and 55091 deletions
|
|
@ -34,7 +34,7 @@ TCSGram::~TCSGram()
|
|||
|
||||
void TCSGram::getTCSVector(int iPosition, TCSVector& rTCSVector) const
|
||||
{
|
||||
if (iPosition < 0)
|
||||
if (iPosition < 0)
|
||||
rTCSVector = TCSVector();
|
||||
else if (iPosition >= m_VectorList.size())
|
||||
rTCSVector = TCSVector();
|
||||
|
|
@ -52,10 +52,10 @@ void TCSGram::addTCSVector(const TCSVector& rTCSVector)
|
|||
{
|
||||
size_t uSize = m_VectorList.size();
|
||||
long lMilliSeconds = static_cast<long>(uSize*m_dFrameDurationMS);
|
||||
std::pair<long, TCSVector> p;
|
||||
std::pair<long, TCSVector> p;
|
||||
p.first = lMilliSeconds;
|
||||
p.second = rTCSVector;
|
||||
|
||||
|
||||
m_VectorList.push_back(p);
|
||||
}
|
||||
|
||||
|
|
@ -68,7 +68,7 @@ long TCSGram::getDuration() const
|
|||
void TCSGram::printDebug()
|
||||
{
|
||||
vectorlist_t::iterator vectorIterator = m_VectorList.begin();
|
||||
|
||||
|
||||
while (vectorIterator != m_VectorList.end())
|
||||
{
|
||||
vectorIterator->second.printDebug();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue