2 * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
23 #include "gstshout2.h"
27 /* elementfactory information */
28 static GstElementDetails shout2send_details = {
31 "Sends data to an icecast server",
32 "Wim Taymans <wim.taymans@chello.be>\n"
33 "Pedro Corte-Real <typo@netcabo.pt>"
36 unsigned int audio_format = 100;
38 /* Shout2send signals and args */
46 ARG_IP, /* the ip of the server */
47 ARG_PORT, /* the encoder port number on the server */
48 ARG_PASSWORD, /* the encoder password on the server */
49 ARG_PUBLIC, /* is this stream public? */
50 ARG_NAME, /* Name of the stream */
51 ARG_DESCRIPTION, /* Description of the stream */
52 ARG_GENRE, /* Genre of the stream */
54 ARG_PROTOCOL, /* Protocol to connect with */
56 ARG_MOUNT, /* mountpoint of stream (icecast only) */
57 ARG_URL, /* Url of stream (I'm guessing) */
60 static GstPadTemplate*
61 sink_template_factory (void)
63 static GstPadTemplate *template = NULL;
66 template = gst_pad_template_new (
78 "layer", GST_PROPS_INT_RANGE (1, 3),
87 static void gst_shout2send_class_init (GstShout2sendClass *klass);
88 static void gst_shout2send_base_init (GstShout2sendClass *klass);
89 static void gst_shout2send_init (GstShout2send *shout2send);
91 static void gst_shout2send_chain (GstPad *pad, GstData *_data);
92 static GstPadLinkReturn gst_shout2send_connect (GstPad *pad, GstCaps *caps);
94 static void gst_shout2send_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec);
95 static void gst_shout2send_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec);
97 static GstElementStateReturn gst_shout2send_change_state (GstElement *element);
99 static GstElementClass *parent_class = NULL;
100 /*static guint gst_shout2send_signals[LAST_SIGNAL] = { 0 }; */
102 #define GST_TYPE_SHOUT_PROTOCOL (gst_shout2send_protocol_get_type())
104 gst_shout2send_protocol_get_type (void)
106 static GType shout2send_protocol_type = 0;
107 static GEnumValue shout2send_protocol[] = {
108 { SHOUT2SEND_PROTOCOL_ICE, "1", "Ice Protocol"},
109 { SHOUT2SEND_PROTOCOL_XAUDIOCAST, "2", "Xaudiocast Protocol (icecast 1.3.x)"},
110 { SHOUT2SEND_PROTOCOL_ICY, "3", "Icy Protocol (ShoutCast)"},
111 { SHOUT2SEND_PROTOCOL_HTTP, "4", "Http Protocol (icecast 2.x)"},
114 if (!shout2send_protocol_type) {
115 shout2send_protocol_type = g_enum_register_static ("GstShout2SendProtocol", shout2send_protocol);
117 return shout2send_protocol_type;
121 gst_shout2send_get_type(void)
123 static GType shout2send_type = 0;
125 if (!shout2send_type) {
126 static const GTypeInfo shout2send_info = {
127 sizeof(GstShout2sendClass),
128 (GBaseInitFunc)gst_shout2send_base_init,
130 (GClassInitFunc)gst_shout2send_class_init,
133 sizeof(GstShout2send),
135 (GInstanceInitFunc)gst_shout2send_init,
137 shout2send_type = g_type_register_static(GST_TYPE_ELEMENT, "GstShout2send", &shout2send_info, 0);
139 return shout2send_type;
143 gst_shout2send_base_init (GstShout2sendClass *klass)
145 GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
147 gst_element_class_add_pad_template (element_class, sink_template_factory());
148 gst_element_class_set_details (element_class, &shout2send_details);
152 gst_shout2send_class_init (GstShout2sendClass *klass)
154 GObjectClass *gobject_class;
155 GstElementClass *gstelement_class;
157 gobject_class = (GObjectClass*)klass;
158 gstelement_class = (GstElementClass*)klass;
160 parent_class = g_type_class_ref(GST_TYPE_ELEMENT);
162 g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_IP,
163 g_param_spec_string("ip","ip","ip",
164 NULL, G_PARAM_READWRITE)); /* CHECKME */
165 g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_PORT,
166 g_param_spec_int("port","port","port",
167 1,G_MAXUSHORT,8000,G_PARAM_READWRITE)); /* CHECKME */
169 g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_PASSWORD,
170 g_param_spec_string("password","password","password",
171 NULL, G_PARAM_READWRITE)); /* CHECKME */
174 g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_NAME,
175 g_param_spec_string("name","name","name",
176 NULL, G_PARAM_READWRITE)); /* CHECKME */
178 g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_DESCRIPTION,
179 g_param_spec_string("description","description","description",
180 NULL, G_PARAM_READWRITE)); /* CHECKME */
182 g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_GENRE,
183 g_param_spec_string("genre","genre","genre",
184 NULL, G_PARAM_READWRITE)); /* CHECKME */
186 g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_PROTOCOL,
187 g_param_spec_enum ("protocol", "protocol", "Connection Protocol to use",
188 GST_TYPE_SHOUT_PROTOCOL, SHOUT2SEND_PROTOCOL_HTTP, G_PARAM_READWRITE));
192 g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_MOUNT,
193 g_param_spec_string("mount","mount","mount",
194 NULL, G_PARAM_READWRITE)); /* CHECKME */
196 g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_URL,
197 g_param_spec_string("url","url","url",
198 NULL, G_PARAM_READWRITE)); /* CHECKME */
202 gobject_class->set_property = gst_shout2send_set_property;
203 gobject_class->get_property = gst_shout2send_get_property;
205 gstelement_class->change_state = gst_shout2send_change_state;
209 gst_shout2send_init (GstShout2send *shout2send)
211 shout2send->sinkpad = gst_pad_new_from_template (sink_template_factory (), "sink");
212 gst_element_add_pad(GST_ELEMENT(shout2send),shout2send->sinkpad);
213 gst_pad_set_chain_function(shout2send->sinkpad,gst_shout2send_chain);
215 gst_pad_set_link_function (shout2send->sinkpad, gst_shout2send_connect);
217 shout2send->ip = g_strdup ("127.0.0.1");
218 shout2send->port = 8000;
219 shout2send->password = g_strdup ("hackme");
220 shout2send->name = g_strdup ("");
221 shout2send->description = g_strdup ("");
222 shout2send->genre = g_strdup ("");
223 shout2send->mount = g_strdup ("");
224 shout2send->url = g_strdup ("");
225 shout2send->protocol = SHOUT2SEND_PROTOCOL_HTTP;
229 gst_shout2send_chain (GstPad *pad, GstData *_data)
231 GstBuffer *buf = GST_BUFFER (_data);
232 GstShout2send *shout2send;
235 g_return_if_fail(pad != NULL);
236 g_return_if_fail(GST_IS_PAD(pad));
237 g_return_if_fail(buf != NULL);
239 shout2send = GST_SHOUT2SEND (GST_OBJECT_PARENT (pad));
241 g_return_if_fail (shout2send != NULL);
242 g_return_if_fail (GST_IS_SHOUT2SEND (shout2send));
244 ret = shout_send (shout2send->conn, GST_BUFFER_DATA (buf),
245 GST_BUFFER_SIZE (buf));
246 if (ret != SHOUTERR_SUCCESS) {
247 g_warning ("send error: %s...\n", shout_get_error(shout2send->conn));
250 shout_sync (shout2send->conn);
252 gst_buffer_unref (buf);
256 gst_shout2send_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
258 GstShout2send *shout2send;
260 /* it's not null if we got it, but it might not be ours */
261 g_return_if_fail(GST_IS_SHOUT2SEND(object));
262 shout2send = GST_SHOUT2SEND(object);
268 g_free (shout2send->ip);
269 shout2send->ip = g_strdup (g_value_get_string (value));
273 shout2send->port = g_value_get_int (value);
277 if (shout2send->password)
278 g_free (shout2send->password);
279 shout2send->password = g_strdup (g_value_get_string (value));
282 case ARG_NAME: /* Name of the stream */
283 if (shout2send->name)
284 g_free (shout2send->name);
285 shout2send->name = g_strdup (g_value_get_string (value));
288 case ARG_DESCRIPTION: /* Description of the stream */
289 if (shout2send->description)
290 g_free (shout2send->description);
291 shout2send->description = g_strdup (g_value_get_string (value));
294 case ARG_GENRE: /* Genre of the stream */
295 if (shout2send->genre)
296 g_free (shout2send->genre);
297 shout2send->genre = g_strdup (g_value_get_string (value));
300 case ARG_PROTOCOL: /* protocol to connect with */
301 shout2send->protocol = g_value_get_enum (value);
304 case ARG_MOUNT: /* mountpoint of stream (icecast only) */
305 if (shout2send->mount)
306 g_free (shout2send->mount);
307 shout2send->mount = g_strdup (g_value_get_string (value));
310 case ARG_URL: /* Url of the stream (I'm guessing) */
312 g_free (shout2send->url);
313 shout2send->url = g_strdup (g_value_get_string (value));
322 gst_shout2send_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
324 GstShout2send *shout2send;
326 /* it's not null if we got it, but it might not be ours */
327 g_return_if_fail(GST_IS_SHOUT2SEND(object));
328 shout2send = GST_SHOUT2SEND(object);
333 g_value_set_string (value, shout2send->ip);
336 g_value_set_int (value, shout2send->port);
339 g_value_set_string (value, shout2send->password);
342 case ARG_NAME: /* Name of the stream */
343 g_value_set_string (value, shout2send->name);
346 case ARG_DESCRIPTION: /* Description of the stream */
347 g_value_set_string (value, shout2send->description);
350 case ARG_GENRE: /* Genre of the stream */
351 g_value_set_string (value, shout2send->genre);
354 case ARG_PROTOCOL: /* protocol to connect with */
355 g_value_set_enum (value, shout2send->protocol);
358 case ARG_MOUNT: /* mountpoint of stream (icecast only) */
359 g_value_set_string (value, shout2send->mount);
362 case ARG_URL: /* Url of stream (I'm guessing) */
363 g_value_set_string (value, shout2send->url);
368 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
373 static GstPadLinkReturn
374 gst_shout2send_connect (GstPad *pad, GstCaps *caps)
378 if (!strcmp(gst_caps_get_mime (caps), "audio/mpeg"))
380 audio_format = SHOUT_FORMAT_MP3;
381 return GST_PAD_LINK_OK;
384 if (!strcmp(gst_caps_get_mime (caps), "application/ogg"))
386 audio_format = SHOUT_FORMAT_VORBIS;
387 return GST_PAD_LINK_OK;
390 return GST_PAD_LINK_REFUSED;
395 static GstElementStateReturn
396 gst_shout2send_change_state (GstElement *element)
398 GstShout2send *shout2send;
400 guint major, minor, micro;
403 gchar *version_string;
405 g_return_val_if_fail (GST_IS_SHOUT2SEND (element), GST_STATE_FAILURE);
407 shout2send = GST_SHOUT2SEND(element);
409 GST_DEBUG ("state pending %d", GST_STATE_PENDING (element));
411 /* if going down into NULL state, close the file if it's open */
412 switch (GST_STATE_TRANSITION (element)) {
413 case GST_STATE_NULL_TO_READY:
414 shout2send->conn = shout_new();
416 switch (shout2send->protocol) {
417 case SHOUT2SEND_PROTOCOL_ICE:
418 proto = SHOUT_PROTOCOL_ICE;
420 case SHOUT2SEND_PROTOCOL_XAUDIOCAST:
421 proto = SHOUT_PROTOCOL_XAUDIOCAST;
423 case SHOUT2SEND_PROTOCOL_ICY:
424 proto = SHOUT_PROTOCOL_ICY;
426 case SHOUT2SEND_PROTOCOL_HTTP:
427 proto = SHOUT_PROTOCOL_HTTP;
431 if (shout_set_protocol(shout2send->conn, proto) != SHOUTERR_SUCCESS)
433 g_error ("Error setting protocol: %s\n", shout_get_error(shout2send->conn));
436 /* --- FIXME: shout requires an ip, and fails if it is given a host. */
437 /* may want to put convert_to_ip(shout2send->ip) here */
440 if (shout_set_host(shout2send->conn, shout2send->ip) != SHOUTERR_SUCCESS)
442 g_error ("Error setting host: %s\n", shout_get_error(shout2send->conn));
446 if (shout_set_port(shout2send->conn, shout2send->port) != SHOUTERR_SUCCESS)
448 g_error ("Error setting port: %s\n", shout_get_error(shout2send->conn));
451 if(shout_set_password(shout2send->conn, shout2send->password) != SHOUTERR_SUCCESS)
453 g_error ("Error setting password: %s\n", shout_get_error(shout2send->conn));
456 if (shout_set_name(shout2send->conn, shout2send->name) != SHOUTERR_SUCCESS)
458 g_error ("Error setting name: %s\n", shout_get_error(shout2send->conn));
461 if (shout_set_description(shout2send->conn, shout2send->description) != SHOUTERR_SUCCESS)
463 g_error ("Error setting name: %s\n", shout_get_error(shout2send->conn));
466 if (shout_set_genre(shout2send->conn, shout2send->genre) != SHOUTERR_SUCCESS)
468 g_error ("Error setting name: %s\n", shout_get_error(shout2send->conn));
471 if (shout_set_mount(shout2send->conn, shout2send->mount) != SHOUTERR_SUCCESS)
473 g_error ("Error setting mount point: %s\n", shout_get_error(shout2send->conn));
476 if (shout_set_user(shout2send->conn, "source") != SHOUTERR_SUCCESS)
478 g_error ("Error setting user: %s\n", shout_get_error(shout2send->conn));
481 gst_version(&major,&minor,µ);
483 version_string = g_strdup_printf("GStreamer %d.%d.%d", major,minor,micro);
485 if (shout_set_agent(shout2send->conn, version_string) != SHOUTERR_SUCCESS)
487 g_error ("Error setting agent: %s\n", shout_get_error(shout2send->conn));
490 g_free (version_string);
495 case GST_STATE_READY_TO_PAUSED:
497 /* This sets the format acording to the capabilities of what
498 we are being given as input. */
500 if (shout_set_format(shout2send->conn, audio_format) != SHOUTERR_SUCCESS)
502 g_error ("Error setting connection format: %s\n", shout_get_error(shout2send->conn));
505 if (shout_open (shout2send->conn) == SHOUTERR_SUCCESS) {
506 g_print ("connected to server...\n");
509 g_warning ("Couldn't connect to server: %s", shout_get_error(shout2send->conn));
510 shout_close (shout2send->conn);
511 shout_free (shout2send->conn);
512 return GST_STATE_FAILURE;
515 case GST_STATE_PAUSED_TO_READY:
516 shout_close (shout2send->conn);
517 shout_free (shout2send->conn);
523 /* if we haven't failed already, give the parent class a chance to ;-) */
524 if (GST_ELEMENT_CLASS (parent_class)->change_state)
525 return GST_ELEMENT_CLASS (parent_class)->change_state (element);
527 return GST_STATE_SUCCESS;
531 plugin_init (GstPlugin *plugin)
533 return gst_element_register (plugin, "shout2send", GST_RANK_NONE,
534 GST_TYPE_SHOUT2SEND);
541 "Sends data to an icecast server using libshout2",
546 "http://www.icecast.org/download.html"