Mercurial > hg > vamp-plugin-sdk
diff vamp-sdk/PluginBase.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 | 24859c958732 |
children | 31eda4b11f2b |
line wrap: on
line diff
--- a/vamp-sdk/PluginBase.h Thu Mar 20 13:22:02 2008 +0000 +++ b/vamp-sdk/PluginBase.h Thu Apr 24 10:27:02 2008 +0000 @@ -69,7 +69,7 @@ /** * Get the computer-usable name of the plugin. This should be * reasonably short and contain no whitespace or punctuation - * characters. It may only contain the characters [a-zA-Z0-9_]. + * characters. It may only contain the characters [a-zA-Z0-9_-]. * This is the authoritative way for a program to identify a * plugin within a given library. * @@ -127,7 +127,7 @@ /** * The name of the parameter, in computer-usable form. Should * be reasonably short, and may only contain the characters - * [a-zA-Z0-9_]. + * [a-zA-Z0-9_-]. */ std::string identifier;