2008-08-07 09:09:44 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2006 Wim Taymans <wim@fluendo.com>
|
|
|
|
*
|
|
|
|
* gstjack.h:
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
2012-11-04 00:07:18 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2008-08-07 09:09:44 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _GST_JACK_H_
|
|
|
|
#define _GST_JACK_H_
|
|
|
|
|
2012-12-12 17:35:04 +00:00
|
|
|
#include <jack/jack.h>
|
|
|
|
#include <gst/audio/audio.h>
|
2008-08-07 09:09:44 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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.
|
2009-03-16 10:21:02 +00:00
|
|
|
* @GST_JACK_CONNECT_AUTO_FORCED: In this mode, the element will try to connect each
|
|
|
|
* output port to a random physical jack input pin. The element will accept any number
|
|
|
|
* of input channels.
|
2008-08-07 09:09:44 +00:00
|
|
|
*
|
|
|
|
* Specify how the output ports will be connected.
|
|
|
|
*/
|
|
|
|
typedef enum {
|
|
|
|
GST_JACK_CONNECT_NONE,
|
2009-03-16 10:21:02 +00:00
|
|
|
GST_JACK_CONNECT_AUTO,
|
|
|
|
GST_JACK_CONNECT_AUTO_FORCED
|
2008-08-07 09:09:44 +00:00
|
|
|
} GstJackConnect;
|
|
|
|
|
2012-01-11 13:47:36 +00:00
|
|
|
/**
|
|
|
|
* GstJackTransport:
|
|
|
|
* @GST_JACK_TRANSPORT_AUTONOMOUS: no transport support
|
|
|
|
* @GST_JACK_TRANSPORT_MASTER: start and stop transport with state-changes
|
|
|
|
* @GST_JACK_TRANSPORT_SLAVE: follow transport state changes
|
|
|
|
*
|
|
|
|
* The jack transport state allow to sync multiple clients. This enum defines a
|
|
|
|
* client behaviour regarding to the transport mechanism.
|
|
|
|
*/
|
|
|
|
typedef enum {
|
2012-03-04 18:55:26 +00:00
|
|
|
GST_JACK_TRANSPORT_AUTONOMOUS = 0,
|
2012-03-05 09:44:54 +00:00
|
|
|
GST_JACK_TRANSPORT_MASTER = (1 << 0),
|
2012-03-04 18:55:26 +00:00
|
|
|
GST_JACK_TRANSPORT_SLAVE = (1 << 1),
|
2012-01-11 13:47:36 +00:00
|
|
|
} GstJackTransport;
|
|
|
|
|
2008-08-07 09:09:44 +00:00
|
|
|
typedef jack_default_audio_sample_t sample_t;
|
|
|
|
|
2012-01-11 13:47:36 +00:00
|
|
|
#define GST_TYPE_JACK_CONNECT (gst_jack_connect_get_type ())
|
|
|
|
#define GST_TYPE_JACK_TRANSPORT (gst_jack_transport_get_type ())
|
|
|
|
#define GST_TYPE_JACK_CLIENT (gst_jack_client_get_type ())
|
2010-09-06 20:11:31 +00:00
|
|
|
|
2011-08-18 17:21:07 +00:00
|
|
|
#if G_BYTE_ORDER == G_LITTLE_ENDIAN
|
2011-09-06 11:16:27 +00:00
|
|
|
#define GST_JACK_FORMAT_STR "F32LE"
|
2011-08-18 17:21:07 +00:00
|
|
|
#else
|
2011-09-06 11:16:27 +00:00
|
|
|
#define GST_JACK_FORMAT_STR "F32BE"
|
2011-08-18 17:21:07 +00:00
|
|
|
#endif
|
|
|
|
|
2010-09-06 20:11:31 +00:00
|
|
|
GType gst_jack_client_get_type(void);
|
2010-03-21 20:39:18 +00:00
|
|
|
GType gst_jack_connect_get_type(void);
|
2012-01-11 13:47:36 +00:00
|
|
|
GType gst_jack_transport_get_type(void);
|
2008-08-07 09:09:44 +00:00
|
|
|
|
|
|
|
#endif // _GST_JACK_H_
|