Mercurial > hg > qm-vamp-plugins
comparison plugins/BarBeatTrack.cpp @ 93:385bec9df059
* minor tidy
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Fri, 27 Feb 2009 13:07:07 +0000 |
parents | 52c6817a414e |
children | e51152b7ee06 |
comparison
equal
deleted
inserted
replaced
92:3602e755b696 | 93:385bec9df059 |
---|---|
276 | 276 |
277 double output = m_d->df->process(dfinput); | 277 double output = m_d->df->process(dfinput); |
278 | 278 |
279 if (m_d->dfOutput.empty()) m_d->origin = timestamp; | 279 if (m_d->dfOutput.empty()) m_d->origin = timestamp; |
280 | 280 |
281 std::cerr << "df[" << m_d->dfOutput.size() << "] is " << output << std::endl; | 281 // std::cerr << "df[" << m_d->dfOutput.size() << "] is " << output << std::endl; |
282 m_d->dfOutput.push_back(output); | 282 m_d->dfOutput.push_back(output); |
283 | 283 |
284 // Downsample and store the incoming audio block. | 284 // Downsample and store the incoming audio block. |
285 // We have an overlap on the incoming audio stream (step size is | 285 // We have an overlap on the incoming audio stream (step size is |
286 // half block size) -- this function is configured to take only a | 286 // half block size) -- this function is configured to take only a |