diff options
author | Andy Wingo <wingo@pobox.com> | 2002-07-02 23:35:07 +0000 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2002-07-02 23:35:07 +0000 |
commit | 30e825ae1acc96bc28583f1e85a6927089dbcb52 (patch) | |
tree | 7483ff56ca34192b1b6ce3cb4ec824b1d5096944 /ext/jack/gstjackbin.c | |
parent | 57c5738eb43a611678c8d864a68d139b36194f9f (diff) | |
download | gst-plugins-bad-30e825ae1acc96bc28583f1e85a6927089dbcb52.tar.gz gst-plugins-bad-30e825ae1acc96bc28583f1e85a6927089dbcb52.tar.bz2 gst-plugins-bad-30e825ae1acc96bc28583f1e85a6927089dbcb52.zip |
make jack work in all its full duplex glory
Original commit message from CVS:
make jack work in all its full duplex glory
Diffstat (limited to 'ext/jack/gstjackbin.c')
-rw-r--r-- | ext/jack/gstjackbin.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/jack/gstjackbin.c b/ext/jack/gstjackbin.c index 5aee2924..64aab499 100644 --- a/ext/jack/gstjackbin.c +++ b/ext/jack/gstjackbin.c @@ -160,14 +160,14 @@ gst_jack_bin_change_state (GstElement *element) l = this->src_pads; while (l) { pad = GST_JACK_PAD (l); - g_message ("jack: registering pad %s:%s", pad->name, pad->peer_name); + g_message ("jack: registering output port %s (peer %s)", pad->name, pad->peer_name); pad->port = jack_port_register (this->client, pad->name, JACK_DEFAULT_AUDIO_TYPE, JackPortIsInput|JackPortIsTerminal, 0); l = g_list_next (l); } l = this->sink_pads; while (l) { pad = GST_JACK_PAD (l); - g_message ("jack: registering pad %s:%s", pad->name, pad->peer_name); + g_message ("jack: registering input port %s (peer %s)", pad->name, pad->peer_name); pad->port = jack_port_register (this->client, pad->name, JACK_DEFAULT_AUDIO_TYPE, JackPortIsOutput|JackPortIsTerminal, 0); l = g_list_next (l); } @@ -186,7 +186,7 @@ gst_jack_bin_change_state (GstElement *element) pad = GST_JACK_PAD (l); 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)) { - g_warning ("could not connect %s and %s", pad->peer_name, jack_port_name (pad->port)); + g_warning ("jack: could not connect %s and %s", pad->peer_name, jack_port_name (pad->port)); return GST_STATE_FAILURE; } l = g_list_next (l); @@ -196,7 +196,7 @@ gst_jack_bin_change_state (GstElement *element) pad = GST_JACK_PAD (l); 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)) { - g_warning ("could not connect %s and %s", pad->peer_name, jack_port_name (pad->port)); + g_warning ("jack: could not connect %s and %s", pad->peer_name, jack_port_name (pad->port)); return GST_STATE_FAILURE; } l = g_list_next (l); |