diff options
author | David Robillard <d@drobilla.net> | 2006-11-23 17:25:41 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-11-23 17:25:41 +0000 |
commit | 5bd8f204b559fcec5bc4caa409849c2599456683 (patch) | |
tree | fd3204db0e1ce89c3ca243266d53aa26aec8f8e5 /slv2/lv2.h | |
parent | a77b95f6c6d61751ff6fc2eb5ba603669167a0f9 (diff) | |
download | lilv-5bd8f204b559fcec5bc4caa409849c2599456683.tar.gz lilv-5bd8f204b559fcec5bc4caa409849c2599456683.tar.bz2 lilv-5bd8f204b559fcec5bc4caa409849c2599456683.zip |
Clarified realtime requirements to include connect_port.
git-svn-id: http://svn.drobilla.net/lad/slv2@204 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'slv2/lv2.h')
-rw-r--r-- | slv2/lv2.h | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -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); |