mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
94d87fb901
Original commit message from CVS: adding arts and artds, no checks yet
21 lines
391 B
Text
21 lines
391 B
Text
#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;
|
|
};
|
|
|
|
};
|