blob: f1de50924fe58fff9d0be5d65d5f4c4b4eeb607d (
plain)
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
|
#include <kmedia2.idl>
module Arts {
/*
* notification proxy for floats, used internally!
*/
interface KFloatWatchProxy {
attribute float value;
};
/*
* used for deliviering MCOP data to the playobjects
*/
interface TDEIOInputStream : InputStream {
boolean openURL(string url);
attribute long bufferPackets;
long packetSize();
};
/*
* used for piping raw data to KAudioConverter from the POs
*/
interface KDataRequest : SynthModule {
void goOn();
default in audio stream left, right;
};
/*
* TESTING ONLY
*/
interface KIOTestSlow : SynthModule {
async in byte stream data;
attribute InputStream inputStream;
};
};
|