summaryrefslogtreecommitdiffstats
path: root/ext/jack/gstjackbin.c
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2002-05-04 21:38:56 +0000
committerAndy Wingo <wingo@pobox.com>2002-05-04 21:38:56 +0000
commit47cd41eb8317a70ef14cf5bc2c119570dfafd98a (patch)
tree39574dba11757af87c33767ef6f1fce1ef9019ca /ext/jack/gstjackbin.c
parent955272b37ddb98ae5c9cfd4c9db2f097c163b73b (diff)
downloadgst-plugins-bad-47cd41eb8317a70ef14cf5bc2c119570dfafd98a.tar.gz
gst-plugins-bad-47cd41eb8317a70ef14cf5bc2c119570dfafd98a.tar.bz2
gst-plugins-bad-47cd41eb8317a70ef14cf5bc2c119570dfafd98a.zip
a commit so that jack will build without errors on Uraeus's system ;)
Original commit message from CVS: a commit so that jack will build without errors on Uraeus's system ;)
Diffstat (limited to 'ext/jack/gstjackbin.c')
-rw-r--r--ext/jack/gstjackbin.c26
1 files changed, 14 insertions, 12 deletions
diff --git a/ext/jack/gstjackbin.c b/ext/jack/gstjackbin.c
index dbaac665..0419ef7a 100644
--- a/ext/jack/gstjackbin.c
+++ b/ext/jack/gstjackbin.c
@@ -18,13 +18,14 @@
*/
#include <stdlib.h>
+#include <string.h>
#include "gstjack.h"
static GstBinClass *parent_class = NULL;
-static void gst_jack_bin_init(GstJack *this);
-static void gst_jack_bin_class_init(GstJackClass *klass);
+static void gst_jack_bin_init(GstJackBin *this);
+static void gst_jack_bin_class_init(GstJackBinClass *klass);
static GstElementStateReturn gst_jack_bin_change_state(GstElement *element);
@@ -58,7 +59,7 @@ gst_jack_bin_get_type (void)
}
static void
-gst_jack_bin_class_init(GstJackClass *klass)
+gst_jack_bin_class_init(GstJackBinClass *klass)
{
GObjectClass *object_class;
GstElementClass *element_class;
@@ -72,7 +73,7 @@ gst_jack_bin_class_init(GstJackClass *klass)
}
static void
-gst_jack_bin_init(GstJack *this)
+gst_jack_bin_init(GstJackBin *this)
{
GST_DEBUG (GST_CAT_THREAD, "initializing jack bin");
@@ -82,6 +83,8 @@ gst_jack_bin_init(GstJack *this)
/* make a new scheduler and associate it with the bin */
gst_scheduler_factory_make (NULL, GST_ELEMENT (this));
+
+ this->sched_setup = FALSE;
}
static GstElementStateReturn
@@ -158,10 +161,10 @@ gst_jack_bin_change_state (GstElement *element)
g_message ("jack: registering pad %s:%s", pad->name, pad->peer_name);
pad->port = jack_port_register (this->client, pad->name, JACK_DEFAULT_AUDIO_TYPE, JackPortIsOutput, 0);
g_message ("connecting gst jack port %s to jack port %s", jack_port_name (pad->port), pad->peer_name);
- if (jack_connect (this->client, jack_port_name (pad->port), pad->peer_name)) {
+/* if (jack_connect (this->client, jack_port_name (pad->port), pad->peer_name)) {
g_warning ("could not connect %s and %s", pad->peer_name, jack_port_name (pad->port));
return GST_STATE_FAILURE;
- }
+ } */
l = g_list_next (l);
}
g_message ("jack: setting OPEN flag");
@@ -207,6 +210,11 @@ process (nframes_t nframes, void *arg)
g_message ("jack: process()");
+ if (!bin->sched_setup) {
+ gst_scheduler_setup (GST_ELEMENT_SCHED (bin));
+ bin->sched_setup = TRUE;
+ }
+
l = bin->src_pads;
while (l) {
pad = GST_JACK_PAD (l);
@@ -246,12 +254,6 @@ sample_rate (nframes_t nframes, void *arg)
GstJackBin *bin = (GstJackBin*) arg;
printf ("the sample rate is now %lu/sec\n", nframes);
bin->rate = nframes;
-
- if (!bin->sched_setup) {
- gst_scheduler_setup (GST_ELEMENT_SCHED (bin));
- bin->sched_setup = TRUE;
- }
-
return 0;
}