aboutsummaryrefslogtreecommitdiffstats
path: root/lv2/buf-size/buf-size.ttl
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-07-07 18:59:32 -0400
committerDavid Robillard <d@drobilla.net>2022-07-17 18:14:00 -0400
commit1eccbe4355685b322194df72b5de2382d5290b3b (patch)
tree0677b5c2f577a5024c351a164527f4bdd91a639b /lv2/buf-size/buf-size.ttl
parentd4a970f6962dda28133290194832b726b566ddab (diff)
downloadlv2-1eccbe4355685b322194df72b5de2382d5290b3b.tar.xz
Rearrange source tree to be directly usable by dependants
This allows the LV2 source distribution to be used as an include path for compilers and an LV2_PATH for applications, at the expense of self-contained bundles. That's a nice idea, but it made LV2 itself weird and annoying to depend on. This rearranges things so that directories in the source tree correspond more closely to installation directories. To make this possible, the "aux" directory in the documentation output has been changed to "style", to avoid the reserved name "aux" on Windows.
Diffstat (limited to 'lv2/buf-size/buf-size.ttl')
-rw-r--r--lv2/buf-size/buf-size.ttl69
1 files changed, 0 insertions, 69 deletions
diff --git a/lv2/buf-size/buf-size.ttl b/lv2/buf-size/buf-size.ttl
deleted file mode 100644
index c78d2cc..0000000
--- a/lv2/buf-size/buf-size.ttl
+++ /dev/null
@@ -1,69 +0,0 @@
-@prefix bufsz: <http://lv2plug.in/ns/ext/buf-size#> .
-@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
-@prefix opts: <http://lv2plug.in/ns/ext/options#> .
-@prefix owl: <http://www.w3.org/2002/07/owl#> .
-@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
-@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
-@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
-
-<http://lv2plug.in/ns/ext/buf-size>
- a owl:Ontology ;
- rdfs:label "LV2 Buf Size" ;
- rdfs:comment "Access to, and restrictions on, buffer sizes." ;
- rdfs:seeAlso <buf-size.h> ,
- <buf-size.meta.ttl> ;
- owl:imports <http://lv2plug.in/ns/lv2core> ,
- <http://lv2plug.in/ns/ext/options> .
-
-bufsz:boundedBlockLength
- a lv2:Feature ;
- rdfs:label "bounded block length" ;
- rdfs:comment "Block length has lower and upper bounds." .
-
-bufsz:fixedBlockLength
- a lv2:Feature ;
- rdfs:label "fixed block length" ;
- rdfs:comment "Block length never changes." .
-
-bufsz:powerOf2BlockLength
- a lv2:Feature ;
- rdfs:label "power of 2 block length" ;
- rdfs:comment "Block length is a power of 2." .
-
-bufsz:coarseBlockLength
- a lv2:Feature ;
- rdfs:label "coarse block length" ;
- rdfs:comment "Plugin prefers coarse block length without buffer splitting." .
-
-bufsz:maxBlockLength
- a rdf:Property ,
- owl:DatatypeProperty ,
- opts:Option ;
- rdfs:label "maximum block length" ;
- rdfs:comment "Block length has an upper bound." ;
- rdfs:range xsd:nonNegativeInteger .
-
-bufsz:minBlockLength
- a rdf:Property ,
- owl:DatatypeProperty ,
- opts:Option ;
- rdfs:label "minimum block length" ;
- rdfs:comment "Block length has a lower bound." ;
- rdfs:range xsd:nonNegativeInteger .
-
-bufsz:nominalBlockLength
- a rdf:Property ,
- owl:DatatypeProperty ,
- opts:Option ;
- rdfs:label "nominal block length" ;
- rdfs:comment "Typical block length that will most often be processed." ;
- rdfs:range xsd:nonNegativeInteger .
-
-bufsz:sequenceSize
- a rdf:Property ,
- owl:DatatypeProperty ,
- opts:Option ;
- rdfs:label "sequence size" ;
- rdfs:comment "The maximum size of a sequence, in bytes." ;
- rdfs:range xsd:nonNegativeInteger .
-