diff options
author | Andy Wingo <wingo@pobox.com> | 2002-03-20 21:45:04 +0000 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2002-03-20 21:45:04 +0000 |
commit | b0c01cddf9efa465a6edf78dc089a243531cd8c4 (patch) | |
tree | 7147c69ae81888a15b6b7da7929a940a269e6ac7 /ext/jack | |
parent | 4359de26166000e317604b6b20283c79dd2a0521 (diff) | |
download | gst-plugins-bad-b0c01cddf9efa465a6edf78dc089a243531cd8c4.tar.gz gst-plugins-bad-b0c01cddf9efa465a6edf78dc089a243531cd8c4.tar.bz2 gst-plugins-bad-b0c01cddf9efa465a6edf78dc089a243531cd8c4.zip |
s/Gnome-Streamer/GStreamer/
Original commit message from CVS:
s/Gnome-Streamer/GStreamer/
Diffstat (limited to 'ext/jack')
-rw-r--r-- | ext/jack/gstjack.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/jack/gstjack.c b/ext/jack/gstjack.c index 816c5036..13a29b10 100644 --- a/ext/jack/gstjack.c +++ b/ext/jack/gstjack.c @@ -251,7 +251,7 @@ gst_jack_request_new_pad (GstElement *element, GstPadTemplate *templ, const gcha } pad = g_new0(GstJackPad, 1); - pad->name = g_strdup_printf ("%s%d", this->port_name_prefix, this->client->default_new_port_number++); + pad->name = g_strdup_printf ("%s%d", this->port_name_prefix, 1); /* fixme :) */ pad->peer_name = newname; pad->pad = gst_pad_new_from_template (templ, newname); gst_element_add_pad (GST_ELEMENT (this), pad->pad); @@ -261,6 +261,7 @@ gst_jack_request_new_pad (GstElement *element, GstPadTemplate *templ, const gcha *pad_list = g_list_append (*pad_list, pad); /* this->pads = g_list_append (this->pads, pad); */ + g_print ("returning from request_new_pad, pad %s created, to connect to %s\n", pad->name, pad->peer_name); return pad->pad; } |