diff vamp-support/LoaderRequests.h @ 108:247d8d533a9c

Cut down vastly on the number of config.pri files and places where their contents has to be effectively duplicated without them
author Chris Cannam <c.cannam@qmul.ac.uk>
date Mon, 24 Oct 2016 17:53:33 +0100
parents 427c4c725085
children 5b113c87b6e6
line wrap: on
line diff
--- a/vamp-support/LoaderRequests.h	Thu Oct 20 18:33:36 2016 +0100
+++ b/vamp-support/LoaderRequests.h	Mon Oct 24 17:53:33 2016 +0100
@@ -90,14 +90,14 @@
 
 	int defaultChannels = 0;
 	if (plugin->getMinChannelCount() == plugin->getMaxChannelCount()) {
-	    defaultChannels = plugin->getMinChannelCount();
+	    defaultChannels = int(plugin->getMinChannelCount());
 	}
 	
 	response.defaultConfiguration = PluginConfiguration::fromPlugin
 	    (plugin,
 	     defaultChannels,
-	     plugin->getPreferredStepSize(),
-	     plugin->getPreferredBlockSize());
+	     int(plugin->getPreferredStepSize()),
+	     int(plugin->getPreferredBlockSize()));
 	
 	return response;
     }