Mercurial > hg > vamp-plugin-sdk
comparison vamp-sdk/Plugin.h @ 134:c1dce0b033cb
* Permit '-' as well as the other characters in identifiers (existing plugins
were already using this character, it's really the documentation that was
at fault)
* Fix failure to return output descriptors properly from PluginBufferingAdapter
* Fix incorrect sample rate in output descriptors for certain sample types
from PluginBufferingAdapter
* Fix incorrect timestamping on features returned from PluginBufferingAdapter
(rounding error)
author | cannam |
---|---|
date | Thu, 24 Apr 2008 10:27:02 +0000 |
parents | e33fa45f0935 |
children | 31eda4b11f2b |
comparison
equal
deleted
inserted
replaced
133:92ca8e401044 | 134:c1dce0b033cb |
---|---|
198 struct OutputDescriptor | 198 struct OutputDescriptor |
199 { | 199 { |
200 /** | 200 /** |
201 * The name of the output, in computer-usable form. Should be | 201 * The name of the output, in computer-usable form. Should be |
202 * reasonably short and without whitespace or punctuation, using | 202 * reasonably short and without whitespace or punctuation, using |
203 * the characters [a-zA-Z0-9_] only. | 203 * the characters [a-zA-Z0-9_-] only. |
204 * Example: "zero_crossing_count" | 204 * Example: "zero_crossing_count" |
205 */ | 205 */ |
206 std::string identifier; | 206 std::string identifier; |
207 | 207 |
208 /** | 208 /** |