diff options
-rw-r--r-- | slv2/plugininstance.h | 2 | ||||
-rw-r--r-- | test/slv2_test.c | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/slv2/plugininstance.h b/slv2/plugininstance.h index 15b2d22..7ef78ab 100644 --- a/slv2/plugininstance.h +++ b/slv2/plugininstance.h @@ -131,7 +131,7 @@ slv2_instance_activate(SLV2Instance instance) /** Run \a instance for \a sample_count frames. * - * If the hint lv2:hardRtCapable is set for this plugin, this function is + * If the hint lv2:hardRTCapable is set for this plugin, this function is * guaranteed not to block. */ static inline void diff --git a/test/slv2_test.c b/test/slv2_test.c index 7b52060..842f3bb 100644 --- a/test/slv2_test.c +++ b/test/slv2_test.c @@ -554,7 +554,7 @@ test_plugin() ":plug a lv2:Plugin ; a lv2:CompressorPlugin ; " PLUGIN_NAME("Test plugin") " ; " LICENSE_GPL " ; " - "lv2:optionalFeature lv2:hardRtCapable ; " + "lv2:optionalFeature lv2:hardRTCapable ; " "lv2:requiredFeature <http://lv2plug.in/ns/ext/event> ; " ":foo 1.6180 ; " "doap:maintainer [ foaf:name \"David Robillard\" ; " @@ -638,7 +638,7 @@ test_plugin() TEST_ASSERT(slv2_plugin_get_latency_port_index(plug) == 2); SLV2Value rt_feature = slv2_value_new_uri(world, - "http://lv2plug.in/ns/lv2core#hardRtCapable"); + "http://lv2plug.in/ns/lv2core#hardRTCapable"); SLV2Value event_feature = slv2_value_new_uri(world, "http://lv2plug.in/ns/ext/event"); SLV2Value pretend_feature = slv2_value_new_uri(world, @@ -881,7 +881,7 @@ test_ui() ":plug a lv2:Plugin ; a lv2:CompressorPlugin ; " PLUGIN_NAME("Test plugin") " ; " LICENSE_GPL " ; " - "lv2:optionalFeature lv2:hardRtCapable ; " + "lv2:optionalFeature lv2:hardRTCapable ; " "lv2:requiredFeature <http://lv2plug.in/ns/ext/event> ; " "lv2ui:ui :ui , :ui2 , :ui3 , :ui4 ; " "doap:maintainer [ foaf:name \"David Robillard\" ; " |