blob: 7ba429d69abd5549b3e069603e1ab71441bb9fa5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <kmedia2.idl>
#include <soundserver.idl>
interface xinePlayObject : Arts::PlayObject, Arts::SynthModule
{
out audio stream left, right;
};
interface xineAudioPlayObject : xinePlayObject, Arts::PlayObject, Arts::SynthModule
{};
interface xineVideoPlayObject : xinePlayObject, Arts::PlayObject, Arts::VideoPlayObject, Arts::SynthModule
{};
|