From 47cd41eb8317a70ef14cf5bc2c119570dfafd98a Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Sat, 4 May 2002 21:38:56 +0000 Subject: 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 ;) --- ext/jack/gstjackbin.c | 26 ++++++++++++++------------ 1 file 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 +#include #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; } -- cgit v1.2.1