This file is indexed.

/usr/lib/lv2/convo.lv2/convoLV2.ttl is in x42-plugins 20150702-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
@prefix atom:  <http://lv2plug.in/ns/ext/atom#> .
@prefix bufsz: <http://lv2plug.in/ns/ext/buf-size#> .
@prefix clv2:  <http://gareus.org/oss/lv2/convoLV2#> .
@prefix doap:  <http://usefulinc.com/ns/doap#> .
@prefix foaf:  <http://xmlns.com/foaf/0.1/> .
@prefix lv2:   <http://lv2plug.in/ns/lv2core#> .
@prefix patch: <http://lv2plug.in/ns/ext/patch#> .
@prefix pg:    <http://lv2plug.in/ns/ext/port-groups#> .
@prefix rdfs:  <http://www.w3.org/2000/01/rdf-schema#> .
@prefix state: <http://lv2plug.in/ns/ext/state#> .
@prefix ui:    <http://lv2plug.in/ns/extensions/ui#> .
@prefix urid:  <http://lv2plug.in/ns/ext/urid#> .
@prefix work:  <http://lv2plug.in/ns/ext/worker#> .

<http://gareus.org/rgareus#me>
	a foaf:Person ;
	foaf:name "Robin Gareus" ;
	foaf:mbox <mailto:robin@gareus.org> ;
	foaf:homepage <http://gareus.org/> .

<http://gareus.org/oss/lv2/convoLV2>
	a doap:Project ;
	doap:maintainer <http://gareus.org/rgareus#me> ;
	doap:name "LV2 Convolution" .

clv2:impulse
	a lv2:Parameter ;
	rdfs:label "impulse" ;
	rdfs:range atom:Path .

clv2:Mono
	a lv2:Plugin ;
	doap:name "LV2 Convolution Mono" ;
	doap:license <http://usefulinc.com/doap/licenses/gpl> ;
	lv2:microVersion 0 ;
	lv2:minorVersion 4 ;
	lv2:project <http://gareus.org/oss/lv2/convoLV2> ;
	lv2:requiredFeature urid:map ,
		work:schedule ,
		bufsz:powerOf2BlockLength ;
	bufsz:minBlockLength 64 ;
	bufsz:maxBlockLength 8192 ;
	lv2:extensionData work:interface ,
		state:interface ;
	lv2:optionalFeature lv2:hardRTCapable ;
	
	patch:writable clv2:impulse ;
	lv2:port [
		a atom:AtomPort ,
			lv2:InputPort ;
		atom:bufferType atom:Sequence ;
		atom:supports patch:Message ;
		lv2:designation lv2:control ;
		lv2:index 0 ;
		lv2:symbol "control" ;
		lv2:name "Control"
	] , [
		a atom:AtomPort ,
			lv2:OutputPort ;
		atom:bufferType atom:Sequence ;
		atom:supports patch:Message ;
		lv2:designation lv2:control ;
		lv2:index 1 ;
		lv2:symbol "notify" ;
		lv2:name "Notify"
	] , [
		a lv2:AudioPort ,
			lv2:OutputPort ;
		lv2:index 2 ;
		lv2:symbol "out" ;
		lv2:name "Out"
	] , [
		a lv2:AudioPort ,
			lv2:InputPort ;
		lv2:index 3 ;
		lv2:symbol "in" ;
		lv2:name "In"
	] ;
	rdfs:comment "Zero latency Mono Signal Convolution Processor"
	.

clv2:Stereo
	a lv2:Plugin ;
	doap:name "LV2 Convolution Stereo" ;
	doap:license <http://usefulinc.com/doap/licenses/gpl> ;
	lv2:microVersion 0 ;
	lv2:minorVersion 4 ;
	lv2:project <http://gareus.org/oss/lv2/convoLV2> ;
	lv2:requiredFeature urid:map ,
		work:schedule ,
		bufsz:powerOf2BlockLength ;
	lv2:extensionData work:interface ,
		state:interface ;
	lv2:optionalFeature lv2:hardRTCapable ;
	
	patch:writable clv2:impulse ;
	lv2:port [
		a atom:AtomPort ,
			lv2:InputPort ;
		atom:bufferType atom:Sequence ;
		atom:supports patch:Message ;
		lv2:designation lv2:control ;
		lv2:index 0 ;
		lv2:symbol "control" ;
		lv2:name "Control"
	] , [
		a atom:AtomPort ,
			lv2:OutputPort ;
		atom:bufferType atom:Sequence ;
		atom:supports patch:Message ;
		lv2:designation lv2:control ;
		lv2:index 1 ;
		lv2:symbol "notify" ;
		lv2:name "Notify"
	] , [
		a lv2:AudioPort ,
			lv2:OutputPort ;
		lv2:index 2 ;
		lv2:symbol "out_1" ;
		lv2:name "OutL" ;
		lv2:designation pg:left
	] , [
		a lv2:AudioPort ,
			lv2:InputPort ;
		lv2:index 3 ;
		lv2:symbol "in_1" ;
		lv2:name "InL" ;
		lv2:designation pg:left
	] , [
		a lv2:AudioPort ,
			lv2:OutputPort ;
		lv2:index 4 ;
		lv2:symbol "out_2" ;
		lv2:name "OutR" ;
		lv2:designation pg:right
	] , [
		a lv2:AudioPort ,
			lv2:InputPort ;
		lv2:index 5 ;
		lv2:symbol "in_2" ;
		lv2:name "InR" ;
		lv2:designation pg:right
	] ;
	rdfs:comment "Zero latency Mono to Stereo Signal Convolution Processor; 2 chan IR"
	.

clv2:MonoToStereo
	a lv2:Plugin ;
	doap:name "LV2 Convolution Mono=>Stereo" ;
	doap:license <http://usefulinc.com/doap/licenses/gpl> ;
	lv2:microVersion 0 ;
	lv2:minorVersion 4 ;
	lv2:project <http://gareus.org/oss/lv2/convoLV2> ;
	lv2:requiredFeature urid:map ,
		work:schedule ,
		bufsz:powerOf2BlockLength ;
	lv2:extensionData work:interface ,
		state:interface ;
	lv2:optionalFeature lv2:hardRTCapable ;
	
	patch:writable clv2:impulse ;
	lv2:port [
		a atom:AtomPort ,
			lv2:InputPort ;
		atom:bufferType atom:Sequence ;
		atom:supports patch:Message ;
		lv2:designation lv2:control ;
		lv2:index 0 ;
		lv2:symbol "control" ;
		lv2:name "Control"
	] , [
		a atom:AtomPort ,
			lv2:OutputPort ;
		atom:bufferType atom:Sequence ;
		atom:supports patch:Message ;
		lv2:designation lv2:control ;
		lv2:index 1 ;
		lv2:symbol "notify" ;
		lv2:name "Notify"
	] , [
		a lv2:AudioPort ,
			lv2:OutputPort ;
		lv2:index 2 ;
		lv2:symbol "out_1" ;
		lv2:name "OutL" ;
		lv2:designation pg:left
	] , [
		a lv2:AudioPort ,
			lv2:InputPort ;
		lv2:index 3 ;
		lv2:symbol "in" ;
		lv2:name "In"
	] , [
		a lv2:AudioPort ,
			lv2:OutputPort ;
		lv2:index 4 ;
		lv2:symbol "out_2" ;
		lv2:name "OutR" ;
		lv2:designation pg:right
	] ;
	rdfs:comment "Zero latency True Stereo Signal Convolution Processor; 2 signals, 4 chan IR (L -> L, R -> R, L -> R, R -> L)"
	.