summaryrefslogtreecommitdiffstats
path: root/ext/shout2/gstshout2.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/shout2/gstshout2.c')
-rw-r--r--ext/shout2/gstshout2.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/shout2/gstshout2.c b/ext/shout2/gstshout2.c
index 47d5105a..45541ad0 100644
--- a/ext/shout2/gstshout2.c
+++ b/ext/shout2/gstshout2.c
@@ -196,7 +196,7 @@ gst_shout2send_init (GstShout2send *shout2send)
gst_element_add_pad(GST_ELEMENT(shout2send),shout2send->sinkpad);
gst_pad_set_chain_function(shout2send->sinkpad,gst_shout2send_chain);
- gst_pad_set_connect_function (shout2send->sinkpad, gst_shout2send_connect);
+ gst_pad_set_link_function (shout2send->sinkpad, gst_shout2send_connect);
shout2send->ip = g_strdup ("127.0.0.1");
shout2send->port = 8000;
@@ -361,16 +361,16 @@ gst_shout2send_connect (GstPad *pad, GstCaps *caps)
if (!strcmp(gst_caps_get_mime (caps), "audio/x-mp3"))
{
audio_format = SHOUT_FORMAT_MP3;
- return GST_PAD_CONNECT_OK;
+ return GST_PAD_LINK_OK;
}
if (!strcmp(gst_caps_get_mime (caps), "application/x-ogg"))
{
audio_format = SHOUT_FORMAT_VORBIS;
- return GST_PAD_CONNECT_OK;
+ return GST_PAD_LINK_OK;
}
else {
- return GST_PAD_CONNECT_REFUSED;
+ return GST_PAD_LINK_REFUSED;
}
}