changeset 146:6b80bb85083b

* we spell quantized with a z in the vamp api
author cannam
date Fri, 20 Jun 2008 14:15:02 +0000
parents 521ff35b8b4c
children 27da08f3e951
files rdf/generator/template-generator.cpp rdf/vamp.n3
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/rdf/generator/template-generator.cpp	Fri Jun 20 14:09:09 2008 +0000
+++ b/rdf/generator/template-generator.cpp	Fri Jun 20 14:15:02 2008 +0000
@@ -193,7 +193,7 @@
     dc:title              \""+o.name+"\" ;\n\
     dc:description        \""+o.description+"\"  ;\n\
     vamp:fixed_bin_count  \""+(o.hasFixedBinCount == 1 ? "true" : "false")+"\" ;\n\
-    vamp:is_quantised     \""+(o.isQuantized == 1 ? "true" : "false")+"\"  ;\n\
+    vamp:is_quantized     \""+(o.isQuantized == 1 ? "true" : "false")+"\"  ;\n\
     vamp:unit             \""+(o.unit)+"\" ;\n";
 
 
--- a/rdf/vamp.n3	Fri Jun 20 14:09:09 2008 +0000
+++ b/rdf/vamp.n3	Fri Jun 20 14:15:02 2008 +0000
@@ -307,9 +307,9 @@
 vamp:is_quantized
 	a rdf:Property;
 	a owl:DatatypeProperty;
-	rdfs:label "is quantised";
+	rdfs:label "is quantized";
 	rdfs:comment """
-		Quantised. A boolean type.
+		Quantized. A boolean type.
 	""";
 	rdfs:domain vamp:PluginOutput;
 	vs:term_status "unstable";
@@ -345,7 +345,7 @@
 	a owl:DatatypeProperty;
 	rdfs:label "quantized step";
 	rdfs:comment """
-		Quantize step. Only defined if is_quantised is true
+		Quantize step. Only defined if is_quantized is true
 	""";
 	rdfs:domain vamp:PluginOutput;
 	rdfs:domain vamp:ParameterDescriptor;