diff options
author | David Robillard <d@drobilla.net> | 2012-04-12 19:33:00 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-04-12 19:33:00 +0000 |
commit | c24f14cdaf6cac3b36e698be82a721f46c5dd453 (patch) | |
tree | afb9c8bb1d33b81bbc0bf339f1af02df464159c5 /lv2/lv2plug.in/ns/lv2core | |
parent | f0f9e67865ff9beb323ad1acab4d0136ea08c38f (diff) | |
download | lv2-c24f14cdaf6cac3b36e698be82a721f46c5dd453.tar.xz |
Update doxygen markup.
Diffstat (limited to 'lv2/lv2plug.in/ns/lv2core')
-rw-r--r-- | lv2/lv2plug.in/ns/lv2core/lv2.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lv2/lv2plug.in/ns/lv2core/lv2.h b/lv2/lv2plug.in/ns/lv2core/lv2.h index 0b04bce..0a89491 100644 --- a/lv2/lv2plug.in/ns/lv2core/lv2.h +++ b/lv2/lv2plug.in/ns/lv2core/lv2.h @@ -272,12 +272,12 @@ typedef struct _LV2_Descriptor { things that the plugin MUST NOT do within the run() function (see lv2core.ttl for details). - As a special case, when @c sample_count == 0, the plugin should update + As a special case, when @p sample_count == 0, the plugin should update any output ports that represent a single instant in time (e.g. control ports, but not audio ports). This is particularly useful for latent plugins, which should update their latency output port so hosts can pre-roll plugins to compute latency. Plugins MUST NOT crash when - @c sample_count == 0. + @p sample_count == 0. @param instance Instance to be run. @@ -368,9 +368,9 @@ typedef struct _LV2_Descriptor { function to find the LV2_Descriptor for the desired plugin. Plugins are accessed by index using values from 0 upwards. This function MUST return NULL for out of range indices, so the host can enumerate plugins by - increasing @c index until NULL is returned. + increasing @p index until NULL is returned. - Note that @c index has no meaning, hosts MUST NOT depend on it remaining + Note that @p index has no meaning, hosts MUST NOT depend on it remaining consistent between loads of the plugin library. */ LV2_SYMBOL_EXPORT |