# HG changeset patch # User Chris Cannam # Date 1432126467 -3600 # Node ID 4ec736a365466d62600e579df960f47be232ed3a # Parent e0697515163f85c8edf039c5de71b4c2968ffc07 Minor doc updates diff -r e0697515163f -r 4ec736a36546 src/vamp-hostsdk/acsymbols.c --- a/src/vamp-hostsdk/acsymbols.c Wed Jan 14 16:58:53 2015 +0000 +++ b/src/vamp-hostsdk/acsymbols.c Wed May 20 13:54:27 2015 +0100 @@ -1,6 +1,7 @@ /* These stubs are provided so that autoconf can check library * versions using C symbols only */ +extern void libvamphostsdk_v_2_6_present(void) { } extern void libvamphostsdk_v_2_5_present(void) { } extern void libvamphostsdk_v_2_4_present(void) { } extern void libvamphostsdk_v_2_3_1_present(void) { } diff -r e0697515163f -r 4ec736a36546 vamp-hostsdk/PluginLoader.h --- a/vamp-hostsdk/PluginLoader.h Wed Jan 14 16:58:53 2015 +0000 +++ b/vamp-hostsdk/PluginLoader.h Wed May 20 13:54:27 2015 +0100 @@ -66,6 +66,9 @@ * class, and are certainly not required to use this actual class. * But we do strongly recommend it. * + * This class is not thread-safe; use it from a single application + * thread, or guard access to it with a mutex. + * * \note This class was introduced in version 1.1 of the Vamp plugin SDK. */ diff -r e0697515163f -r 4ec736a36546 vamp/vamp.h --- a/vamp/vamp.h Wed Jan 14 16:58:53 2015 +0000 +++ b/vamp/vamp.h Wed May 20 13:54:27 2015 +0100 @@ -250,7 +250,7 @@ /** API version with which this descriptor is compatible. */ unsigned int vampApiVersion; - /** Computer-usable name of the plugin. Must not change. [a-zA-Z0-9_] */ + /** Computer-usable name of the plugin. Must not change. [a-zA-Z0-9_-] */ const char *identifier; /** Human-readable name of the plugin. May be translatable. */