diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2002-10-02 08:01:04 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2002-10-02 08:01:04 +0000 |
commit | 545dd47499ea8f3b0721d8bfafcc9869abc75a87 (patch) | |
tree | 36000d06f6645abd2fbf817f9a17d032a67c4aba /ext | |
parent | 0bf3a73a5fe9a29106144e2f2b7446f3053c6c13 (diff) | |
download | gst-plugins-bad-545dd47499ea8f3b0721d8bfafcc9869abc75a87.tar.gz gst-plugins-bad-545dd47499ea8f3b0721d8bfafcc9869abc75a87.tar.bz2 gst-plugins-bad-545dd47499ea8f3b0721d8bfafcc9869abc75a87.zip |
some code cleanup don't abort if can't connect, brings down whole app
Original commit message from CVS:
some code cleanup
don't abort if can't connect, brings down whole app
Diffstat (limited to 'ext')
-rw-r--r-- | ext/shout/gstshout.c | 38 |
1 files changed, 16 insertions, 22 deletions
diff --git a/ext/shout/gstshout.c b/ext/shout/gstshout.c index a0632d76..533d2cb4 100644 --- a/ext/shout/gstshout.c +++ b/ext/shout/gstshout.c @@ -21,10 +21,10 @@ /* elementfactory information */ static GstElementDetails icecastsend_details = { - "An Icecast plugin", - "IcecastSend", + "An Icecast plugin", + "shoutsend", "GPL", - "Sends data to an icecast server", + "Sends data to an icecast server using libshout", VERSION, "Wim Taymans <wim.taymans@chello.be>", "(C) 2000", @@ -55,10 +55,8 @@ enum { ARG_NAME, /* Name of the stream */ ARG_DESCRIPTION, /* Description of the stream */ ARG_GENRE, /* Genre of the stream */ - ARG_MOUNT, /* mountpoint of stream (icecast only) */ ARG_DUMPFILE, /* Dumpfile on the server for this stream (icecast only) */ - ARG_ICY, /* use icy headers for login? (for use with shoutcast) */ ARG_AIM, /* AIM number (shoutcast only) */ ARG_ICQ, /* ICQ number (shoutcast only) */ @@ -85,34 +83,31 @@ sink_template_factory (void) return template; } -static void gst_icecastsend_class_init (GstIcecastSendClass *klass); -static void gst_icecastsend_init (GstIcecastSend *icecastsend); +static void gst_icecastsend_class_init (GstIcecastSendClass *klass); +static void gst_icecastsend_init (GstIcecastSend *icecastsend); -static void gst_icecastsend_chain (GstPad *pad, GstBuffer *buf); +static void gst_icecastsend_chain (GstPad *pad, GstBuffer *buf); -static void gst_icecastsend_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec); -static void gst_icecastsend_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec); +static void gst_icecastsend_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec); +static void gst_icecastsend_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec); -static GstElementStateReturn gst_icecastsend_change_state (GstElement *element); +static + GstElementStateReturn gst_icecastsend_change_state (GstElement *element); static GstElementClass *parent_class = NULL; /*static guint gst_icecastsend_signals[LAST_SIGNAL] = { 0 }; */ GType -gst_icecastsend_get_type(void) +gst_icecastsend_get_type (void) { static GType icecastsend_type = 0; if (!icecastsend_type) { static const GTypeInfo icecastsend_info = { - sizeof(GstIcecastSendClass), NULL, - NULL, - (GClassInitFunc)gst_icecastsend_class_init, - NULL, - NULL, - sizeof(GstIcecastSend), - 0, - (GInstanceInitFunc)gst_icecastsend_init, + sizeof (GstIcecastSendClass), NULL, NULL, + (GClassInitFunc) gst_icecastsend_class_init, NULL, NULL, + sizeof (GstIcecastSend), 0, + (GInstanceInitFunc) gst_icecastsend_init, }; icecastsend_type = g_type_register_static(GST_TYPE_ELEMENT, "GstIcecastSend", &icecastsend_info, 0); } @@ -244,7 +239,6 @@ gst_icecastsend_set_property (GObject *object, guint prop_id, const GValue *valu { GstIcecastSend *icecastsend; - /* it's not null if we got it, but it might not be ours */ g_return_if_fail(GST_IS_ICECASTSEND(object)); icecastsend = GST_ICECASTSEND(object); @@ -429,7 +423,7 @@ gst_icecastsend_change_state (GstElement *element) } else { /* changed from g_warning, and included result code lookup. */ - g_error ("couldn't connect to server... (%i: %s)\n", icecastsend->conn.error, SHOUT_ERRORS[icecastsend->conn.error]); + g_warning ("couldn't connect to server... (%i: %s)\n", icecastsend->conn.error, SHOUT_ERRORS[icecastsend->conn.error]); shout_disconnect (&icecastsend->conn); return GST_STATE_FAILURE; } |