summaryrefslogtreecommitdiff
path: root/ext/rtmp
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2011-11-13 23:55:56 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2011-11-13 23:55:56 +0000
commit357d7bdfed98d7ee7f8e63a94b2359a8bf517e13 (patch)
treebe8240279a2f1e09b92281c3c5e82de824245f75 /ext/rtmp
parent7b80e0773fb6759e8d71a535bb3c6c14106c8e66 (diff)
downloadgstreamer-plugins-bad-357d7bdfed98d7ee7f8e63a94b2359a8bf517e13.tar.gz
Update for GstURIHandler get_protocols() changes
Diffstat (limited to 'ext/rtmp')
-rw-r--r--ext/rtmp/gstrtmpsink.c26
-rw-r--r--ext/rtmp/gstrtmpsrc.c26
2 files changed, 32 insertions, 20 deletions
diff --git a/ext/rtmp/gstrtmpsink.c b/ext/rtmp/gstrtmpsink.c
index 6137ee5ac..ce29ecf17 100644
--- a/ext/rtmp/gstrtmpsink.c
+++ b/ext/rtmp/gstrtmpsink.c
@@ -251,31 +251,35 @@ gst_rtmp_sink_uri_get_type (GType type)
return GST_URI_SINK;
}
-static gchar **
+static const gchar *const *
gst_rtmp_sink_uri_get_protocols (GType type)
{
- static gchar *protocols[] =
- { (char *) "rtmp", (char *) "rtmpt", (char *) "rtmps", (char *) "rtmpe",
- (char *) "rtmfp", (char *) "rtmpte", (char *) "rtmpts", NULL
- };
+ static const gchar *protocols[] =
+ { "rtmp", "rtmpt", "rtmps", "rtmpe", "rtmfp", "rtmpte", "rtmpts", NULL };
+
return protocols;
}
-static const gchar *
+static gchar *
gst_rtmp_sink_uri_get_uri (GstURIHandler * handler)
{
GstRTMPSink *sink = GST_RTMP_SINK (handler);
- return sink->uri;
+ /* FIXME: make thread-safe */
+ return g_strdup (sink->uri);
}
static gboolean
-gst_rtmp_sink_uri_set_uri (GstURIHandler * handler, const gchar * uri)
+gst_rtmp_sink_uri_set_uri (GstURIHandler * handler, const gchar * uri,
+ GError ** error)
{
GstRTMPSink *sink = GST_RTMP_SINK (handler);
- if (GST_STATE (sink) >= GST_STATE_PAUSED)
+ if (GST_STATE (sink) >= GST_STATE_PAUSED) {
+ g_set_error (error, GST_URI_ERROR, GST_URI_ERROR_BAD_STATE,
+ "Changing the URI on rtmpsrc when it is running is not supported");
return FALSE;
+ }
g_free (sink->uri);
sink->uri = NULL;
@@ -290,6 +294,8 @@ gst_rtmp_sink_uri_set_uri (GstURIHandler * handler, const gchar * uri)
!host.av_len || !playpath.av_len) {
GST_ELEMENT_ERROR (sink, RESOURCE, OPEN_WRITE,
("Failed to parse URI %s", uri), (NULL));
+ g_set_error (error, GST_URI_ERROR, GST_URI_ERROR_BAD_URI,
+ "Could not parse RTMP URI");
return FALSE;
}
sink->uri = g_strdup (uri);
@@ -320,7 +326,7 @@ gst_rtmp_sink_set_property (GObject * object, guint prop_id,
switch (prop_id) {
case PROP_LOCATION:
gst_rtmp_sink_uri_set_uri (GST_URI_HANDLER (sink),
- g_value_get_string (value));
+ g_value_get_string (value), NULL);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
diff --git a/ext/rtmp/gstrtmpsrc.c b/ext/rtmp/gstrtmpsrc.c
index 36e74882b..9a30b28c0 100644
--- a/ext/rtmp/gstrtmpsrc.c
+++ b/ext/rtmp/gstrtmpsrc.c
@@ -166,31 +166,35 @@ gst_rtmp_src_uri_get_type (GType type)
return GST_URI_SRC;
}
-static gchar **
+static const gchar *const *
gst_rtmp_src_uri_get_protocols (GType type)
{
- static gchar *protocols[] =
- { (char *) "rtmp", (char *) "rtmpt", (char *) "rtmps", (char *) "rtmpe",
- (char *) "rtmfp", (char *) "rtmpte", (char *) "rtmpts", NULL
- };
+ static const gchar *protocols[] =
+ { "rtmp", "rtmpt", "rtmps", "rtmpe", "rtmfp", "rtmpte", "rtmpts", NULL };
+
return protocols;
}
-static const gchar *
+static gchar *
gst_rtmp_src_uri_get_uri (GstURIHandler * handler)
{
GstRTMPSrc *src = GST_RTMP_SRC (handler);
- return src->uri;
+ /* FIXME: make thread-safe */
+ return g_strdup (src->uri);
}
static gboolean
-gst_rtmp_src_uri_set_uri (GstURIHandler * handler, const gchar * uri)
+gst_rtmp_src_uri_set_uri (GstURIHandler * handler, const gchar * uri,
+ GError ** error)
{
GstRTMPSrc *src = GST_RTMP_SRC (handler);
- if (GST_STATE (src) >= GST_STATE_PAUSED)
+ if (GST_STATE (src) >= GST_STATE_PAUSED) {
+ g_set_error (error, GST_URI_ERROR, GST_URI_ERROR_BAD_STATE,
+ "Changing the URI on rtmpsrc when it is running is not supported");
return FALSE;
+ }
g_free (src->uri);
src->uri = NULL;
@@ -204,6 +208,8 @@ gst_rtmp_src_uri_set_uri (GstURIHandler * handler, const gchar * uri)
if (!RTMP_ParseURL (uri, &protocol, &host, &port, &playpath, &app) ||
!host.av_len || !playpath.av_len) {
GST_ERROR_OBJECT (src, "Failed to parse URI %s", uri);
+ g_set_error (error, GST_URI_ERROR, GST_URI_ERROR_BAD_URI,
+ "Could not parse RTMP URI");
return FALSE;
}
src->uri = g_strdup (uri);
@@ -236,7 +242,7 @@ gst_rtmp_src_set_property (GObject * object, guint prop_id,
switch (prop_id) {
case PROP_LOCATION:{
gst_rtmp_src_uri_set_uri (GST_URI_HANDLER (src),
- g_value_get_string (value));
+ g_value_get_string (value), NULL);
break;
}
default: