-
-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathmanifest.xml
More file actions
executable file
·86 lines (70 loc) · 3.19 KB
/
Copy pathmanifest.xml
File metadata and controls
executable file
·86 lines (70 loc) · 3.19 KB
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
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node name="/jdsp4linux">
<node name="/gui">
<interface name="me.timschneeberger.jdsp4linux.Gui">
<method name="raiseWindow"/>
</interface>
</node>
<node name="/service">
<interface name="me.timschneeberger.jdsp4linux.Service">
<property name="SamplingRate" type="s" access="read"/>
<property name="AudioFormat" type="s" access="read"/>
<property name="IsProcessing" type="b" access="read"/>
<property name="CoreVersion" type="s" access="read"/>
<property name="AppVersion" type="s" access="read"/>
<property name="AppFlavor" type="s" access="read"/>
<method name="getKeys">
<arg name="keys" type="as" direction="out"/>
</method>
<method name="get">
<arg name="key" type="s" direction="in"/>
<arg name="value" type="s" direction="out"/>
</method>
<method name="getAll">
<arg name="kvpairs" type="s" direction="out"/>
</method>
<method name="set">
<arg name="key" type="s" direction="in"/>
<arg name="value" type="v" direction="in"/>
</method>
<method name="setAndCommit">
<arg name="key" type="s" direction="in"/>
<arg name="value" type="v" direction="in"/>
</method>
<method name="commit" />
<method name="getPresets">
<arg name="presets" type="as" direction="out"/>
</method>
<method name="loadPreset">
<arg name="name" type="s" direction="in"/>
</method>
<method name="savePreset">
<arg name="name" type="s" direction="in"/>
</method>
<method name="deletePreset">
<arg name="name" type="s" direction="in"/>
</method>
<method name="setPresetRule">
<arg name="deviceName" type="s" direction="in"/>
<arg name="deviceId" type="s" direction="in"/>
<arg name="routeName" type="s" direction="in"/>
<arg name="routeId" type="s" direction="in"/>
<arg name="preset" type="s" direction="in"/>
</method>
<method name="deletePresetRule">
<arg name="deviceId" type="s" direction="in"/>
<arg name="routeId" type="s" direction="in"/>
</method>
<method name="getPresetRules">
<annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QList<PresetRule>"/>
<arg name="rules" type="a(sssss)" direction="out"/>
</method>
<method name="getOutputDevices">
<annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QList<IOutputDevice>"/>
<arg name="devices" type="a(issss)" direction="out"/>
</method>
<method name="relinkAudioPipeline" />
</interface>
</node>
</node>