diff options
| author | David Robillard <d@drobilla.net> | 2016-09-18 10:41:12 -0400 | 
|---|---|---|
| committer | David Robillard <d@drobilla.net> | 2016-09-18 10:41:12 -0400 | 
| commit | f2dcf90d3185a7493f98a51352c6fde80b36b58f (patch) | |
| tree | b4f1446070e7ed4680dddf015ce4eed349b7eee4 /lv2/lv2plug.in/ns/ext | |
| parent | 0ba0e4e27fe8be4bed1b041de12c3917d2f0b53e (diff) | |
| download | lv2-f2dcf90d3185a7493f98a51352c6fde80b36b58f.tar.xz | |
Add bufsz:coarseBlockLength feature
Diffstat (limited to 'lv2/lv2plug.in/ns/ext')
| -rw-r--r-- | lv2/lv2plug.in/ns/ext/buf-size/buf-size.ttl | 14 | ||||
| -rw-r--r-- | lv2/lv2plug.in/ns/ext/buf-size/lv2-buf-size.doap.ttl | 6 | 
2 files changed, 18 insertions, 2 deletions
diff --git a/lv2/lv2plug.in/ns/ext/buf-size/buf-size.ttl b/lv2/lv2plug.in/ns/ext/buf-size/buf-size.ttl index 31a6906f..87bf655 100644 --- a/lv2/lv2plug.in/ns/ext/buf-size/buf-size.ttl +++ b/lv2/lv2plug.in/ns/ext/buf-size/buf-size.ttl @@ -62,6 +62,20 @@ plugins must require both this feature and bufsz:fixedBlockLength.</p>  capable of running the plugin.</p>  """ . +bufsz:coarseBlockLength +	a lv2:Feature ; +	rdfs:label "coarse block length" ; +	lv2:documentation """ +<p>A feature that indicates the plugin prefers coarse, regular block lengths. +For example, plugins that do not implement sample-accurate control use this +feature to indicate that the host should not split the run cycle because +controls have changed.</p> + +<p>Note that this feature is merely a hint, and does not guarantee a fixed +block length.  The run cycle may be split for other reasons, and the blocksize +itself may change anytime.</p> +""" . +  bufsz:maxBlockLength  	a rdf:Property ,  		owl:DatatypeProperty , diff --git a/lv2/lv2plug.in/ns/ext/buf-size/lv2-buf-size.doap.ttl b/lv2/lv2plug.in/ns/ext/buf-size/lv2-buf-size.doap.ttl index b4ecf31..6a0c3bc 100644 --- a/lv2/lv2plug.in/ns/ext/buf-size/lv2-buf-size.doap.ttl +++ b/lv2/lv2plug.in/ns/ext/buf-size/lv2-buf-size.doap.ttl @@ -12,11 +12,13 @@  	doap:developer <http://drobilla.net/drobilla#me> ;  	doap:release [  		doap:revision "1.3" ; -		doap:created "2015-09-09" ; +		doap:created "2015-09-18" ;  		dcs:blame <http://drobilla.net/drobilla#me> ;  		dcs:changeset [  			dcs:item [ -				rdfs:label "Add bufsz:nominalBlockLength." +				rdfs:label "Add bufsz:nominalBlockLength option." +			] , [ +				rdfs:label "Add bufsz:coarseBlockLength feature."  			]  		]  	] , [  |