blob: a2686288260325b1d1b8edea95b0b17b07d57c86 (
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
|
#include <kmedia2.idl>
#include <soundserver.idl>
interface akodePlayObject : Arts::StreamPlayObject, Arts::SynthModule, Arts::PitchablePlayObject
{
async in byte stream indata;
out audio stream left, right;
};
interface akodeMPCPlayObject : akodePlayObject
{};
interface akodeMPEGPlayObject : akodePlayObject
{};
interface akodeFFMPEGPlayObject : akodePlayObject
{};
interface akodeXiphPlayObject : akodePlayObject
{};
interface akodeFAADPlayObject : akodePlayObject
{};
interface akodeVorbisStreamPlayObject : akodePlayObject
{};
interface akodeSpeexStreamPlayObject : akodePlayObject
{};
|