Mercurial > hg > svcore
comparison transform/Transform.h @ 848:539740f231fa tonioni_multi_transform
Toward running multiple transforms (from same plugin + params) at once
author | Chris Cannam |
---|---|
date | Fri, 29 Nov 2013 15:43:50 +0000 |
parents | 1b8c748fd7ea |
children | 06579b8ffb7b |
comparison
equal
deleted
inserted
replaced
847:2d53205f70cd | 848:539740f231fa |
---|---|
23 #include <vamp-hostsdk/PluginBase.h> | 23 #include <vamp-hostsdk/PluginBase.h> |
24 | 24 |
25 #include <QString> | 25 #include <QString> |
26 | 26 |
27 #include <map> | 27 #include <map> |
28 #include <vector> | |
28 | 29 |
29 typedef QString TransformId; | 30 typedef QString TransformId; |
30 | 31 |
31 class QXmlAttributes; | 32 class QXmlAttributes; |
32 | 33 |
194 RealTime m_startTime; | 195 RealTime m_startTime; |
195 RealTime m_duration; | 196 RealTime m_duration; |
196 float m_sampleRate; | 197 float m_sampleRate; |
197 }; | 198 }; |
198 | 199 |
200 typedef std::vector<Transform> Transforms; | |
201 | |
199 #endif | 202 #endif |
200 | 203 |