From 5bd8f204b559fcec5bc4caa409849c2599456683 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 23 Nov 2006 17:25:41 +0000 Subject: Clarified realtime requirements to include connect_port. git-svn-id: http://svn.drobilla.net/lad/slv2@204 a436a847-0d15-0410-975c-d299462d15a1 --- slv2/lv2.h | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'slv2') diff --git a/slv2/lv2.h b/slv2/lv2.h index 53ab768..51cb61a 100644 --- a/slv2/lv2.h +++ b/slv2/lv2.h @@ -217,7 +217,11 @@ typedef struct _LV2_Descriptor { * same buffer for more than one port and even use the same buffer for * both input and output (see LV2_PROPERTY_INPLACE_BROKEN (FIXME)). * However, overlapped buffers or use of a single buffer for both - * audio and control data may result in unexpected behaviour. */ + * audio and control data may result in unexpected behaviour. + * + * If the plugin has the property lv2:hardRTCapable then there are + * various things that the plugin MUST NOT do within the connect_port() + * function (see lv2.ttl). */ void (*connect_port)(LV2_Handle Instance, uint32_t Port, void * DataLocation); @@ -257,9 +261,9 @@ typedef struct _LV2_Descriptor { * the plugin instance may not be reused until activate() has been * called again. * - * If the plugin has the property LV2_PROPERTY_HARD_RT_CAPABLE then - * there are various things that the plugin MUST NOT do within the run() - * function (see above). */ + * If the plugin has the property lv2:hardRTCapable then there are + * various things that the plugin MUST NOT do within the run() + * function (see lv2.ttl). */ void (*run)(LV2_Handle Instance, uint32_t SampleCount); -- cgit v1.2.1