This file is indexed.

/usr/lib/lv2/fomp.lv2/mvclpf1.ttl is in fomp 1.0.0~dfsg0-1.

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
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix fomp: <http://drobilla.net/plugins/fomp/> .
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix units: <http://lv2plug.in/ns/extensions/units#> .

fomp:mvclpf1
	a lv2:Plugin ,
		lv2:LowpassPlugin ;
	doap:name "Moog Low-Pass Filter 1" ;
	lv2:microVersion 0 ;
	lv2:minorVersion 0 ;
	lv2:optionalFeature lv2:hardRTCapable ;
	lv2:project fomp: ;
	lv2:port [
		a lv2:AudioPort ,
			lv2:InputPort ;
		lv2:index 0 ;
		lv2:name "Input" ;
		lv2:symbol "in"
	] , [
		a lv2:AudioPort ,
			lv2:OutputPort ;
		lv2:index 1 ;
		lv2:name "Output" ;
		lv2:symbol "out"
	] , [
		a lv2:CVPort ,
			lv2:InputPort ;
		lv2:index 2 ;
		lv2:name "FM" ;
		lv2:symbol "fm" ;
		units:unit units:oct
	] , [
		a lv2:CVPort ,
			lv2:InputPort ;
		lv2:index 3 ;
		lv2:name "Exp FM" ;
		lv2:symbol "exp_fm" ;
		units:unit units:oct
	] , [
		a lv2:CVPort ,
			lv2:InputPort ;
		lv2:index 4 ;
		lv2:name "Resonance Mod" ;
		lv2:symbol "res_mod"
	] , [
		a lv2:ControlPort ,
			lv2:InputPort ;
		lv2:default 0.0 ;
		lv2:index 5 ;
		lv2:maximum 10.0 ;
		lv2:minimum -60.0 ;
		lv2:name "Input gain" ;
		lv2:symbol "in_gain" ;
		units:unit units:db
	] , [
		a lv2:ControlPort ,
			lv2:InputPort ;
		lv2:default 440.0 ;
		lv2:index 6 ;
		lv2:maximum 1.0 ;
		lv2:minimum 0.000001 ;
		lv2:name "Frequency" ;
		lv2:portProperty <http://lv2plug.in/ns/ext/port-props#logarithmic> ,
			lv2:sampleRate ;
		lv2:symbol "freq" ;
		units:unit units:hz
	] , [
		a lv2:ControlPort ,
			lv2:InputPort ;
		lv2:index 7 ;
		lv2:maximum 10.0 ;
		lv2:minimum 0.0 ;
		lv2:name "Exp. FM gain" ;
		lv2:symbol "exp_fm_gain"
	] , [
		a lv2:ControlPort ,
			lv2:InputPort ;
		lv2:index 8 ;
		lv2:maximum 1.0 ;
		lv2:minimum 0.0 ;
		lv2:name "Resonance" ;
		lv2:symbol "res"
	] , [
		a lv2:ControlPort ,
			lv2:InputPort ;
		lv2:index 9 ;
		lv2:maximum 1.0 ;
		lv2:minimum 0.0 ;
		lv2:name "Resonance gain" ;
		lv2:symbol "res_gain"
	] , [
		a lv2:ControlPort ,
			lv2:InputPort ;
		lv2:default 0.0 ;
		lv2:index 10 ;
		lv2:maximum 15.0 ;
		lv2:minimum -15.0 ;
		lv2:name "Output gain" ;
		lv2:symbol "out_gain" ;
		units:unit units:db
	] ;
	rdfs:comment "A fairly simple design which does not even pretend to come close the 'real thing'.  It uses a very crude approximation of the non-linear resistor in the first filter section only.  Retained in this distribution because it's a cheap (in terms of CPU usage) general purpose 24 dB/oct lowpass filter that could be useful." .