Mercurial > hg > vamp-plugin-sdk
changeset 45:39be57dd4eb7
* add output names as well as descriptions
author | cannam |
---|---|
date | Fri, 10 Nov 2006 17:47:15 +0000 |
parents | ce61ad9b9159 |
children | 2858c897d90f |
files | host/vamp-simple-host.cpp |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/host/vamp-simple-host.cpp Wed Nov 01 17:48:21 2006 +0000 +++ b/host/vamp-simple-host.cpp Fri Nov 10 17:47:15 2006 +0000 @@ -407,7 +407,9 @@ if (outputs.size() > 1) { for (size_t j = 0; j < outputs.size(); ++j) { cerr << " (" << j << ") " - << outputs[j].description << endl; + << outputs[j].description + << ", \"" << outputs[j].name << "\"" + << endl; } } ++index;