diff transform/TransformFactory.h @ 930:06579b8ffb7b warnfix_no_size_t

More size_t evisceration and warning fixes
author Chris Cannam
date Tue, 17 Jun 2014 14:49:49 +0100
parents 2d551c765d51
children 26cf6d5251ec
line wrap: on
line diff
--- a/transform/TransformFactory.h	Tue Jun 17 14:33:42 2014 +0100
+++ b/transform/TransformFactory.h	Tue Jun 17 14:49:49 2014 +0100
@@ -88,7 +88,7 @@
      * with different parameters and execution context settings.
      * Return the default one for the given transform.
      */
-    Transform getDefaultTransformFor(TransformId identifier, size_t rate = 0);
+    Transform getDefaultTransformFor(TransformId identifier, int rate = 0);
 
     /**
      * Full name of a transform, suitable for putting on a menu.
@@ -210,7 +210,7 @@
     void populateFeatureExtractionPlugins(TransformDescriptionMap &);
     void populateRealTimePlugins(TransformDescriptionMap &);
 
-    Vamp::PluginBase *instantiateDefaultPluginFor(TransformId id, size_t rate);
+    Vamp::PluginBase *instantiateDefaultPluginFor(TransformId id, int rate);
     QMutex m_transformsMutex;
     QMutex m_uninstalledTransformsMutex;