Mercurial > hg > qm-vamp-plugins
comparison plugins/BeatTrack.cpp @ 52:4fe04e706839
* Add some descriptions etc
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Wed, 30 Jan 2008 13:33:23 +0000 |
parents | df7a0bc46592 |
children | 2631d0b3d7eb |
comparison
equal
deleted
inserted
replaced
51:64e4c8aec287 | 52:4fe04e706839 |
---|---|
217 size_t | 217 size_t |
218 BeatTracker::getPreferredBlockSize() const | 218 BeatTracker::getPreferredBlockSize() const |
219 { | 219 { |
220 size_t theoretical = getPreferredStepSize() * 2; | 220 size_t theoretical = getPreferredStepSize() * 2; |
221 | 221 |
222 //!!! need power of 2 | 222 // I think this is not necessarily going to be a power of two, and |
223 // the host might have a problem with that, but I'm not sure we | |
224 // can do much about it here | |
223 return theoretical; | 225 return theoretical; |
224 } | 226 } |
225 | 227 |
226 BeatTracker::OutputList | 228 BeatTracker::OutputList |
227 BeatTracker::getOutputDescriptors() const | 229 BeatTracker::getOutputDescriptors() const |