Mercurial > hg > vamp-plugin-sdk
comparison examples/FixedTempoEstimator.cpp @ 201:8e1b1fa94e15
...
author | cannam |
---|---|
date | Fri, 10 Oct 2008 16:04:00 +0000 |
parents | a86e777bf9a6 |
children | e100112ecc06 |
comparison
equal
deleted
inserted
replaced
200:a86e777bf9a6 | 201:8e1b1fa94e15 |
---|---|
241 | 241 |
242 d.identifier = "acf"; | 242 d.identifier = "acf"; |
243 d.name = "Autocorrelation Function"; | 243 d.name = "Autocorrelation Function"; |
244 d.description = "Autocorrelation of onset detection function"; | 244 d.description = "Autocorrelation of onset detection function"; |
245 d.hasKnownExtents = false; | 245 d.hasKnownExtents = false; |
246 d.unit = "r"; | |
246 list.push_back(d); | 247 list.push_back(d); |
247 | 248 |
248 d.identifier = "filtered_acf"; | 249 d.identifier = "filtered_acf"; |
249 d.name = "Filtered Autocorrelation"; | 250 d.name = "Filtered Autocorrelation"; |
250 d.description = "Filtered autocorrelation of onset detection function"; | 251 d.description = "Filtered autocorrelation of onset detection function"; |
252 d.unit = "r"; | |
251 list.push_back(d); | 253 list.push_back(d); |
252 | 254 |
253 return list; | 255 return list; |
254 } | 256 } |
255 | 257 |