mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
f1d5e92f33
Original commit message from CVS: * docs/plugins/Makefile.am: * docs/plugins/gst-plugins-bad-plugins-docs.sgml: * docs/plugins/gst-plugins-bad-plugins-sections.txt: * docs/plugins/gst-plugins-bad-plugins.args: * docs/plugins/gst-plugins-bad-plugins.hierarchy: * docs/plugins/gst-plugins-bad-plugins.interfaces: * docs/plugins/gst-plugins-bad-plugins.prerequisites: * docs/plugins/inspect/plugin-jack.xml Add new element to docs. * ext/jack/gstjack.h Add missing file. * ext/jack/gstjackaudiosrc.c: * ext/jack/gstjackaudiosrc.h: Rename jackaudiosrc to jack_audio_src.
48 lines
1.6 KiB
C
48 lines
1.6 KiB
C
/* 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
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#ifndef _GST_JACK_H_
|
|
#define _GST_JACK_H_
|
|
|
|
|
|
/**
|
|
* 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
|
|
} GstJackConnect;
|
|
|
|
typedef jack_default_audio_sample_t sample_t;
|
|
|
|
#define GST_TYPE_JACK_CONNECT (gst_jack_connect_get_type())
|
|
GType gst_jack_connect_get_type();
|
|
|
|
#endif // _GST_JACK_H_
|