diff options
Diffstat (limited to 'ext/jack/gstjackaudiosink.h')
-rw-r--r-- | ext/jack/gstjackaudiosink.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ext/jack/gstjackaudiosink.h b/ext/jack/gstjackaudiosink.h index 218e9de0..245521b2 100644 --- a/ext/jack/gstjackaudiosink.h +++ b/ext/jack/gstjackaudiosink.h @@ -39,6 +39,17 @@ G_BEGIN_DECLS typedef struct _GstJackAudioSink GstJackAudioSink; typedef struct _GstJackAudioSinkClass GstJackAudioSinkClass; +/** + * GstJackConnect: + * @GST_JACK_CONNECT_NONE: Don't automatically connect to physical ports. + * In this mode, the element will accept any number of input channels and will + * create (but not connect) an output port for each channel. + * @GST_JACK_CONNECT_AUTO: In this mode, the element will try to connect each + * output port to a random physical jack input pin. The sink will + * expose the number of physical channels on its pad caps. + * + * Specify how the output ports will be connected. + */ typedef enum { GST_JACK_CONNECT_NONE, GST_JACK_CONNECT_AUTO |