Mercurial > hg > vamp-plugin-tester
comparison README @ 26:eff1772ba397 vamp-plugin-tester-v1.0-erroneous
* More doc corrections to match error reporting updates in SDK
* Don't return success after failing to load a plugin!
author | cannam |
---|---|
date | Tue, 22 Sep 2009 11:24:31 +0000 |
parents | 612333efd521 |
children | 5dcdc86d45d4 |
comparison
equal
deleted
inserted
replaced
25:612333efd521 | 26:eff1772ba397 |
---|---|
65 installed in the Vamp plugin path. | 65 installed in the Vamp plugin path. |
66 | 66 |
67 Normally this message will be preceded by one of the following | 67 Normally this message will be preceded by one of the following |
68 errors: | 68 errors: |
69 | 69 |
70 Invalid plugin key <key> | 70 Invalid plugin key <key> in loadPlugin |
71 | 71 |
72 - You have perhaps mistyped the argument to vamp-plugin-tester? | 72 - The argument given to vamp-plugin-tester could not be split |
73 into library name and plugin identifier. Check the usage | |
74 description above. | |
75 | |
76 No library found in Vamp path for plugin <key> | |
77 | |
78 - No Vamp plugin library of that name was found in the Vamp path. | |
79 This message will often be accompanied by one of the following | |
80 errors; if it isn't, then that probably means the file did not | |
81 exist at all. | |
73 | 82 |
74 Plugin <id> not found in library <name> | 83 Plugin <id> not found in library <name> |
75 | 84 |
76 - The library was found and loaded and was apparently a valid | 85 - The library was found and loaded and was apparently a valid |
77 Vamp plugin library, but it didn't contain a plugin of that id. | 86 Vamp plugin library, but it didn't contain a plugin of that id. |
78 Check you typed the id correctly, and if this is your library, | 87 Check you typed the id correctly, and if this is your library, |
79 check that the vampGetPluginDescriptor function returns the | 88 check that the vampGetPluginDescriptor function returns the |
80 plugin descriptor properly. | 89 plugin descriptor properly. |
81 | 90 |
82 No valid <name> found in Vamp path | |
83 | |
84 - No Vamp plugin library of that name was found in the Vamp path. | |
85 This message will often be accompanied by one of the following | |
86 errors; if it isn't, then that probably means the file did not | |
87 exist at all. | |
88 | |
89 Unable to load library <name> | 91 Unable to load library <name> |
90 | 92 |
91 - A dynamic library of that name was found, but the system library | 93 - A dynamic library of that name was found, but the system library |
92 loader could not load it. Perhaps it depends on another library | 94 loader could not load it. Perhaps it depends on another library |
93 that is not available, or it was built for the wrong architecture? | 95 that is not available, or it was built for the wrong architecture. |
96 There may be more information in the error message. | |
94 | 97 |
95 No vampGetPluginDescriptor function found in library <name> | 98 No vampGetPluginDescriptor function found in library <name> |
96 | 99 |
97 - A dynamic library of that name was found and loaded, but it | 100 - A dynamic library of that name was found and loaded, but it |
98 lacked the necessary public vampGetPluginDescriptor function. | 101 lacked the necessary public vampGetPluginDescriptor function. |