summaryrefslogtreecommitdiff
path: root/ext/arts/gst_artsio.idl
blob: b656a0ac17d13433504815479db9c6f2d5bae738 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "artsflow.idl"

module Gst {

interface ArtsMonoSink : Arts::SynthModule {
	default out audio stream output;
};

interface ArtsStereoSink : Arts::SynthModule {
	default out audio stream outleft,outright;
};

interface ArtsMonoSrc : Arts::SynthModule {
	default in audio stream input;
};

interface ArtsStereoSrc : Arts::SynthModule {
	default in audio stream inleft,inright;
};

};