From 4db67120efca2d4c200d2e1ba5cf3d7b97cab97e Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 22 Sep 2018 20:38:01 +0200 Subject: Install standard headers to simpler include paths --- lv2/lv2plug.in/ns/ext/resize-port/resize-port.ttl | 64 ----------------------- 1 file changed, 64 deletions(-) delete mode 100644 lv2/lv2plug.in/ns/ext/resize-port/resize-port.ttl (limited to 'lv2/lv2plug.in/ns/ext/resize-port/resize-port.ttl') diff --git a/lv2/lv2plug.in/ns/ext/resize-port/resize-port.ttl b/lv2/lv2plug.in/ns/ext/resize-port/resize-port.ttl deleted file mode 100644 index 6688f90..0000000 --- a/lv2/lv2plug.in/ns/ext/resize-port/resize-port.ttl +++ /dev/null @@ -1,64 +0,0 @@ -@prefix lv2: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix rsz: . -@prefix xsd: . - - - a lv2:Specification ; - rdfs:seeAlso , - ; - lv2:documentation """ -

This extension defines a feature, rsz:resize, which allows plugins to -dynamically resize their output port buffers.

- -

In addition to the dynamic feature, there are properties which describe the -space required for a particular port buffer which can be used statically in -data files.

-""" . - -rsz:resize - a lv2:Feature ; - lv2:documentation """ -

A feature to resize output port buffers in LV2_Plugin_Descriptor::run().

- -

To support this feature, the host must pass an LV2_Feature to the plugin's -instantiate method with URI LV2_RESIZE_PORT__resize and a pointer to a -LV2_Resize_Port_Resize structure. This structure provides a resize_port -function which plugins may use to resize output port buffers as necessary.

-""" . - -rsz:asLargeAs - a rdf:Property , - owl:DatatypeProperty ; - rdfs:domain lv2:Port ; - rdfs:range lv2:Symbol ; - rdfs:label "as large as" ; - lv2:documentation """ -

Indicates that a port requires at least as much buffer space as the port -with the given symbol on the same plugin instance. This may be used for any -ports, but is generally most useful to indicate an output port must be at least -as large as some input port (because it will copy from it). If a port is -asLargeAs several ports, it is asLargeAs the largest such port (not the sum of -those ports' sizes).

- -

The host guarantees that whenever an ObjectPort's run method is called, any -output O that is obj:asLargeAs an input I is connected to a buffer large enough -to copy I, or NULL if the port is lv2:connectionOptional.

-""" . - -rsz:minimumSize - a rdf:Property , - owl:DatatypeProperty , - owl:FunctionalProperty ; - rdfs:domain lv2:Port ; - rdfs:range xsd:nonNegativeInteger ; - rdfs:label "minimum size" ; - rdfs:comment """ -Indicates that a port requires a buffer at least this large, in bytes. Any -host that supports the resize-port feature MUST connect any port with a -minimumSize specified to a buffer at least as large as the value given for this -property. Any host, especially those that do NOT support dynamic port -resizing, SHOULD do so or reduced functionality may result. -""" . -- cgit v1.2.1