1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-15 15:11:12 +02:00

Update libvamp to 2.5.

This commit is contained in:
lllucius
2013-10-31 06:33:59 +00:00
parent c8aa505879
commit 6fef6dd8b4
77 changed files with 6254 additions and 3598 deletions

View File

@@ -250,7 +250,7 @@ string describe_output(Plugin *plugin, Plugin::OutputDescriptor o)
res+=" vamp:bin_count "+to_string(o.binCount)+" ;\n";
bool haveBinNames = false;
for (int i=0; i < o.binNames.size(); i++) {
for (unsigned int i=0; i < o.binNames.size(); i++) {
if (o.binNames[i] != "") {
haveBinNames = true;
break;
@@ -309,7 +309,7 @@ string describe_output(Plugin *plugin, Plugin::OutputDescriptor o)
res+=" vamp:bin_count "+to_string(o.binCount)+" ;\n";
bool haveBinNames = false;
for (int i=0; i < o.binNames.size(); i++) {
for (unsigned int i=0; i < o.binNames.size(); i++) {
if (o.binNames[i] != "") {
haveBinNames = true;
break;