2010-12-11 17:01:53 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2008 Wim Taymans <wim.taymans at gmail.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2010-12-21 16:37:26 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2010-12-11 17:01:53 +00:00
|
|
|
#include "rtsp-media-factory-uri.h"
|
|
|
|
|
2010-12-23 17:53:01 +00:00
|
|
|
#define DEFAULT_URI NULL
|
|
|
|
#define DEFAULT_USE_GSTPAY FALSE
|
2010-12-11 17:01:53 +00:00
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
PROP_URI,
|
2010-12-23 17:53:01 +00:00
|
|
|
PROP_USE_GSTPAY,
|
2010-12-11 17:01:53 +00:00
|
|
|
PROP_LAST
|
|
|
|
};
|
|
|
|
|
2010-12-12 03:06:41 +00:00
|
|
|
|
|
|
|
#define RAW_VIDEO_CAPS \
|
|
|
|
"video/x-raw-yuv; " \
|
|
|
|
"video/x-raw-rgb; " \
|
|
|
|
"video/x-raw-gray"
|
|
|
|
|
|
|
|
#define RAW_AUDIO_CAPS \
|
|
|
|
"audio/x-raw-int; " \
|
|
|
|
"audio/x-raw-float"
|
|
|
|
|
|
|
|
static GstStaticCaps raw_video_caps = GST_STATIC_CAPS (RAW_VIDEO_CAPS);
|
|
|
|
static GstStaticCaps raw_audio_caps = GST_STATIC_CAPS (RAW_AUDIO_CAPS);
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
GstRTSPMediaFactoryURI *factory;
|
|
|
|
guint pt;
|
|
|
|
} FactoryData;
|
|
|
|
|
|
|
|
static void
|
|
|
|
free_data (FactoryData * data)
|
|
|
|
{
|
|
|
|
g_object_unref (data->factory);
|
|
|
|
g_free (data);
|
|
|
|
}
|
|
|
|
|
2010-12-11 17:01:53 +00:00
|
|
|
static const gchar *factory_key = "GstRTSPMediaFactoryURI";
|
|
|
|
|
2011-01-12 17:14:48 +00:00
|
|
|
GST_DEBUG_CATEGORY_STATIC (rtsp_media_factory_uri_debug);
|
2010-12-11 17:01:53 +00:00
|
|
|
#define GST_CAT_DEFAULT rtsp_media_factory_uri_debug
|
|
|
|
|
|
|
|
static void gst_rtsp_media_factory_uri_get_property (GObject * object,
|
|
|
|
guint propid, GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_rtsp_media_factory_uri_set_property (GObject * object,
|
|
|
|
guint propid, const GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_rtsp_media_factory_uri_finalize (GObject * obj);
|
|
|
|
|
|
|
|
static GstElement *rtsp_media_factory_uri_get_element (GstRTSPMediaFactory *
|
|
|
|
factory, const GstRTSPUrl * url);
|
|
|
|
|
|
|
|
G_DEFINE_TYPE (GstRTSPMediaFactoryURI, gst_rtsp_media_factory_uri,
|
|
|
|
GST_TYPE_RTSP_MEDIA_FACTORY);
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_rtsp_media_factory_uri_class_init (GstRTSPMediaFactoryURIClass * klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
GstRTSPMediaFactoryClass *mediafactory_class;
|
|
|
|
|
|
|
|
gobject_class = G_OBJECT_CLASS (klass);
|
|
|
|
mediafactory_class = GST_RTSP_MEDIA_FACTORY_CLASS (klass);
|
|
|
|
|
|
|
|
gobject_class->get_property = gst_rtsp_media_factory_uri_get_property;
|
|
|
|
gobject_class->set_property = gst_rtsp_media_factory_uri_set_property;
|
|
|
|
gobject_class->finalize = gst_rtsp_media_factory_uri_finalize;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GstRTSPMediaFactoryURI::uri
|
|
|
|
*
|
|
|
|
* The uri of the resource that will be served by this factory.
|
|
|
|
*/
|
|
|
|
g_object_class_install_property (gobject_class, PROP_URI,
|
|
|
|
g_param_spec_string ("uri", "URI",
|
|
|
|
"The URI of the resource to stream", DEFAULT_URI,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2010-12-23 17:53:01 +00:00
|
|
|
/**
|
|
|
|
* GstRTSPMediaFactoryURI::use-gstpay
|
|
|
|
*
|
|
|
|
* Allow the usage of gstpay in order to avoid decoding of compressed formats
|
|
|
|
* without a payloader.
|
|
|
|
*/
|
|
|
|
g_object_class_install_property (gobject_class, PROP_USE_GSTPAY,
|
2011-01-07 10:24:39 +00:00
|
|
|
g_param_spec_boolean ("use-gstpay", "Use gstpay",
|
2010-12-23 17:53:01 +00:00
|
|
|
"Use the gstpay payloader to avoid decoding", DEFAULT_USE_GSTPAY,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2010-12-11 17:01:53 +00:00
|
|
|
|
|
|
|
mediafactory_class->get_element = rtsp_media_factory_uri_get_element;
|
|
|
|
|
|
|
|
GST_DEBUG_CATEGORY_INIT (rtsp_media_factory_uri_debug, "rtspmediafactoryuri",
|
|
|
|
0, "GstRTSPMediaFactoryUri");
|
|
|
|
}
|
|
|
|
|
2010-12-23 14:58:14 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
GList *demux;
|
|
|
|
GList *payload;
|
|
|
|
GList *decode;
|
|
|
|
} FilterData;
|
|
|
|
|
2010-12-21 16:37:26 +00:00
|
|
|
static gboolean
|
2010-12-23 14:58:14 +00:00
|
|
|
payloader_filter (GstPluginFeature * feature, FilterData * data)
|
2010-12-21 16:37:26 +00:00
|
|
|
{
|
|
|
|
gboolean res;
|
|
|
|
const gchar *klass;
|
2010-12-23 14:58:14 +00:00
|
|
|
GstElementFactory *fact;
|
|
|
|
GList **list = NULL;
|
2010-12-21 16:37:26 +00:00
|
|
|
|
|
|
|
/* we only care about element factories */
|
|
|
|
if (G_UNLIKELY (!GST_IS_ELEMENT_FACTORY (feature)))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (gst_plugin_feature_get_rank (feature) < GST_RANK_MARGINAL)
|
|
|
|
return FALSE;
|
|
|
|
|
2010-12-23 14:58:14 +00:00
|
|
|
fact = GST_ELEMENT_FACTORY_CAST (feature);
|
2010-12-21 16:37:26 +00:00
|
|
|
|
2010-12-23 14:58:14 +00:00
|
|
|
klass = gst_element_factory_get_klass (fact);
|
2010-12-21 16:37:26 +00:00
|
|
|
|
2010-12-23 14:58:14 +00:00
|
|
|
if (strstr (klass, "Decoder"))
|
|
|
|
list = &data->decode;
|
|
|
|
else if (strstr (klass, "Demux"))
|
|
|
|
list = &data->demux;
|
|
|
|
else if (strstr (klass, "Parser") && strstr (klass, "Codec"))
|
|
|
|
list = &data->demux;
|
|
|
|
else if (strstr (klass, "Payloader") && strstr (klass, "RTP"))
|
|
|
|
list = &data->payload;
|
|
|
|
|
|
|
|
if (list) {
|
|
|
|
GST_DEBUG ("adding %s", GST_PLUGIN_FEATURE_NAME (fact));
|
|
|
|
*list = g_list_prepend (*list, fact);
|
|
|
|
}
|
2010-12-21 16:37:26 +00:00
|
|
|
|
2010-12-23 14:58:14 +00:00
|
|
|
return FALSE;
|
2010-12-21 16:37:26 +00:00
|
|
|
}
|
|
|
|
|
2010-12-11 17:01:53 +00:00
|
|
|
static void
|
|
|
|
gst_rtsp_media_factory_uri_init (GstRTSPMediaFactoryURI * factory)
|
|
|
|
{
|
2010-12-23 14:58:14 +00:00
|
|
|
FilterData data = { NULL, NULL, NULL };
|
|
|
|
|
2010-12-11 17:01:53 +00:00
|
|
|
factory->uri = g_strdup (DEFAULT_URI);
|
2010-12-23 17:53:01 +00:00
|
|
|
factory->use_gstpay = DEFAULT_USE_GSTPAY;
|
|
|
|
|
2010-12-21 16:37:26 +00:00
|
|
|
/* get the feature list using the filter */
|
2010-12-23 14:58:14 +00:00
|
|
|
gst_default_registry_feature_filter ((GstPluginFeatureFilter)
|
|
|
|
payloader_filter, FALSE, &data);
|
|
|
|
/* sort */
|
|
|
|
factory->demuxers =
|
|
|
|
g_list_sort (data.demux, gst_plugin_feature_rank_compare_func);
|
|
|
|
factory->payloaders =
|
|
|
|
g_list_sort (data.payload, gst_plugin_feature_rank_compare_func);
|
|
|
|
factory->decoders =
|
|
|
|
g_list_sort (data.decode, gst_plugin_feature_rank_compare_func);
|
2010-12-21 16:37:26 +00:00
|
|
|
|
2010-12-12 03:06:41 +00:00
|
|
|
factory->raw_vcaps = gst_static_caps_get (&raw_video_caps);
|
|
|
|
factory->raw_acaps = gst_static_caps_get (&raw_audio_caps);
|
2010-12-11 17:01:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_rtsp_media_factory_uri_finalize (GObject * obj)
|
|
|
|
{
|
|
|
|
GstRTSPMediaFactoryURI *factory = GST_RTSP_MEDIA_FACTORY_URI (obj);
|
|
|
|
|
|
|
|
g_free (factory->uri);
|
2010-12-23 14:58:14 +00:00
|
|
|
gst_plugin_feature_list_free (factory->demuxers);
|
|
|
|
gst_plugin_feature_list_free (factory->payloaders);
|
|
|
|
gst_plugin_feature_list_free (factory->decoders);
|
2010-12-12 03:06:41 +00:00
|
|
|
gst_caps_unref (factory->raw_vcaps);
|
|
|
|
gst_caps_unref (factory->raw_acaps);
|
2010-12-11 17:01:53 +00:00
|
|
|
|
|
|
|
G_OBJECT_CLASS (gst_rtsp_media_factory_uri_parent_class)->finalize (obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_rtsp_media_factory_uri_get_property (GObject * object, guint propid,
|
|
|
|
GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstRTSPMediaFactoryURI *factory = GST_RTSP_MEDIA_FACTORY_URI (object);
|
|
|
|
|
|
|
|
switch (propid) {
|
|
|
|
case PROP_URI:
|
|
|
|
g_value_take_string (value, gst_rtsp_media_factory_uri_get_uri (factory));
|
|
|
|
break;
|
2010-12-23 17:53:01 +00:00
|
|
|
case PROP_USE_GSTPAY:
|
|
|
|
g_value_set_boolean (value, factory->use_gstpay);
|
|
|
|
break;
|
2010-12-11 17:01:53 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, propid, pspec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_rtsp_media_factory_uri_set_property (GObject * object, guint propid,
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstRTSPMediaFactoryURI *factory = GST_RTSP_MEDIA_FACTORY_URI (object);
|
|
|
|
|
|
|
|
switch (propid) {
|
|
|
|
case PROP_URI:
|
|
|
|
gst_rtsp_media_factory_uri_set_uri (factory, g_value_get_string (value));
|
|
|
|
break;
|
2010-12-23 17:53:01 +00:00
|
|
|
case PROP_USE_GSTPAY:
|
|
|
|
factory->use_gstpay = g_value_get_boolean (value);
|
|
|
|
break;
|
2010-12-11 17:01:53 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, propid, pspec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_rtsp_media_factory_uri_new:
|
|
|
|
*
|
|
|
|
* Create a new #GstRTSPMediaFactoryURI instance.
|
|
|
|
*
|
|
|
|
* Returns: a new #GstRTSPMediaFactoryURI object.
|
|
|
|
*/
|
|
|
|
GstRTSPMediaFactoryURI *
|
|
|
|
gst_rtsp_media_factory_uri_new (void)
|
|
|
|
{
|
|
|
|
GstRTSPMediaFactoryURI *result;
|
|
|
|
|
|
|
|
result = g_object_new (GST_TYPE_RTSP_MEDIA_FACTORY_URI, NULL);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_rtsp_media_factory_uri_set_uri:
|
|
|
|
* @factory: a #GstRTSPMediaFactory
|
|
|
|
* @uri: the uri the stream
|
|
|
|
*
|
|
|
|
* Set the URI of the resource that will be streamed by this factory.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_rtsp_media_factory_uri_set_uri (GstRTSPMediaFactoryURI * factory,
|
|
|
|
const gchar * uri)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GST_IS_RTSP_MEDIA_FACTORY_URI (factory));
|
|
|
|
g_return_if_fail (uri != NULL);
|
|
|
|
|
|
|
|
GST_RTSP_MEDIA_FACTORY_LOCK (factory);
|
|
|
|
g_free (factory->uri);
|
|
|
|
factory->uri = g_strdup (uri);
|
|
|
|
GST_RTSP_MEDIA_FACTORY_UNLOCK (factory);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_rtsp_media_factory_uri_get_uri:
|
|
|
|
* @factory: a #GstRTSPMediaFactory
|
|
|
|
*
|
|
|
|
* Get the URI that will provide media for this factory.
|
|
|
|
*
|
|
|
|
* Returns: the configured URI. g_free() after usage.
|
|
|
|
*/
|
|
|
|
gchar *
|
|
|
|
gst_rtsp_media_factory_uri_get_uri (GstRTSPMediaFactoryURI * factory)
|
|
|
|
{
|
|
|
|
gchar *result;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_RTSP_MEDIA_FACTORY_URI (factory), NULL);
|
|
|
|
|
|
|
|
GST_RTSP_MEDIA_FACTORY_LOCK (factory);
|
|
|
|
result = g_strdup (factory->uri);
|
|
|
|
GST_RTSP_MEDIA_FACTORY_UNLOCK (factory);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstElementFactory *
|
|
|
|
find_payloader (GstRTSPMediaFactoryURI * urifact, GstCaps * caps)
|
|
|
|
{
|
|
|
|
GList *list, *tmp;
|
|
|
|
GstElementFactory *factory = NULL;
|
|
|
|
|
2010-12-23 14:58:14 +00:00
|
|
|
/* first find a demuxer that can link */
|
|
|
|
list = gst_element_factory_list_filter (urifact->demuxers, caps,
|
2010-12-11 17:01:53 +00:00
|
|
|
GST_PAD_SINK, FALSE);
|
|
|
|
|
2010-12-23 14:58:14 +00:00
|
|
|
if (list != NULL) {
|
|
|
|
/* we have a demuxer, try that one first */
|
|
|
|
gst_plugin_feature_list_free (list);
|
|
|
|
return NULL;
|
|
|
|
}
|
2010-12-11 17:01:53 +00:00
|
|
|
|
2010-12-23 14:58:14 +00:00
|
|
|
/* no demuxer try a depayloader */
|
|
|
|
list = gst_element_factory_list_filter (urifact->payloaders, caps,
|
|
|
|
GST_PAD_SINK, FALSE);
|
2010-12-11 17:01:53 +00:00
|
|
|
|
2010-12-23 14:58:14 +00:00
|
|
|
if (list == NULL) {
|
2010-12-23 17:53:01 +00:00
|
|
|
if (urifact->use_gstpay) {
|
|
|
|
/* no depayloader or parser/demuxer, use gstpay when allowed */
|
|
|
|
factory = gst_element_factory_find ("rtpgstpay");
|
|
|
|
} else {
|
|
|
|
/* no depayloader, try a decoder, we'll get to a payloader for a decoded
|
|
|
|
* video or audio format, worst case. */
|
|
|
|
list = gst_element_factory_list_filter (urifact->decoders, caps,
|
|
|
|
GST_PAD_SINK, FALSE);
|
|
|
|
|
|
|
|
if (list != NULL) {
|
|
|
|
/* we have a decoder, try that one first */
|
|
|
|
gst_plugin_feature_list_free (list);
|
|
|
|
return NULL;
|
|
|
|
}
|
2010-12-23 14:58:14 +00:00
|
|
|
}
|
|
|
|
}
|
2010-12-11 17:01:53 +00:00
|
|
|
|
2010-12-23 14:58:14 +00:00
|
|
|
if (list != NULL) {
|
|
|
|
factory = GST_ELEMENT_FACTORY_CAST (list->data);
|
|
|
|
g_object_ref (factory);
|
|
|
|
gst_plugin_feature_list_free (list);
|
|
|
|
}
|
2010-12-11 17:01:53 +00:00
|
|
|
return factory;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
autoplug_continue_cb (GstElement * uribin, GstPad * pad, GstCaps * caps,
|
|
|
|
GstElement * element)
|
|
|
|
{
|
|
|
|
GList *list, *tmp;
|
2010-12-12 03:06:41 +00:00
|
|
|
FactoryData *data;
|
2010-12-11 17:01:53 +00:00
|
|
|
GstElementFactory *factory;
|
|
|
|
gboolean res;
|
|
|
|
|
|
|
|
GST_DEBUG ("found pad %s:%s of caps %" GST_PTR_FORMAT,
|
|
|
|
GST_DEBUG_PAD_NAME (pad), caps);
|
|
|
|
|
2010-12-12 03:06:41 +00:00
|
|
|
data = g_object_get_data (G_OBJECT (element), factory_key);
|
2010-12-11 17:01:53 +00:00
|
|
|
|
2010-12-12 03:06:41 +00:00
|
|
|
if (!(factory = find_payloader (data->factory, caps)))
|
2010-12-11 17:01:53 +00:00
|
|
|
goto no_factory;
|
|
|
|
|
2010-12-23 14:58:14 +00:00
|
|
|
/* we found a payloader, stop autoplugging so we can plug the
|
|
|
|
* payloader. */
|
|
|
|
GST_DEBUG ("found factory %s",
|
2010-12-11 17:01:53 +00:00
|
|
|
gst_plugin_feature_get_name (GST_PLUGIN_FEATURE (factory)));
|
|
|
|
gst_object_unref (factory);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
no_factory:
|
|
|
|
{
|
|
|
|
/* no payloader, continue autoplugging */
|
|
|
|
GST_DEBUG ("no payloader found");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
pad_added_cb (GstElement * uribin, GstPad * pad, GstElement * element)
|
|
|
|
{
|
|
|
|
GstRTSPMediaFactoryURI *urifact;
|
2010-12-12 03:06:41 +00:00
|
|
|
FactoryData *data;
|
2010-12-11 17:01:53 +00:00
|
|
|
GstElementFactory *factory;
|
|
|
|
GstElement *payloader;
|
|
|
|
GstCaps *caps;
|
|
|
|
GstPad *sinkpad, *srcpad, *ghostpad;
|
2010-12-12 03:06:41 +00:00
|
|
|
GstElement *convert;
|
|
|
|
gchar *padname;
|
2010-12-11 17:01:53 +00:00
|
|
|
|
|
|
|
GST_DEBUG ("added pad %s:%s", GST_DEBUG_PAD_NAME (pad));
|
|
|
|
|
|
|
|
/* link the element now and expose the pad */
|
2010-12-12 03:06:41 +00:00
|
|
|
data = g_object_get_data (G_OBJECT (element), factory_key);
|
|
|
|
urifact = data->factory;
|
2010-12-11 17:01:53 +00:00
|
|
|
|
2010-12-12 03:06:41 +00:00
|
|
|
/* ref to make refcounting easier later */
|
|
|
|
gst_object_ref (pad);
|
|
|
|
padname = gst_pad_get_name (pad);
|
|
|
|
|
|
|
|
/* get pad caps first, then call get_caps, then fail */
|
|
|
|
if ((caps = GST_PAD_CAPS (pad)))
|
|
|
|
gst_caps_ref (caps);
|
|
|
|
else if ((caps = gst_pad_get_caps (pad)) == NULL)
|
2010-12-11 17:01:53 +00:00
|
|
|
goto no_caps;
|
|
|
|
|
2010-12-12 03:06:41 +00:00
|
|
|
/* check for raw caps */
|
|
|
|
if (gst_caps_can_intersect (caps, urifact->raw_vcaps)) {
|
|
|
|
/* we have raw video caps, insert converter */
|
|
|
|
convert = gst_element_factory_make ("ffmpegcolorspace", NULL);
|
|
|
|
} else if (gst_caps_can_intersect (caps, urifact->raw_acaps)) {
|
|
|
|
/* we have raw audio caps, insert converter */
|
|
|
|
convert = gst_element_factory_make ("audioconvert", NULL);
|
|
|
|
} else {
|
|
|
|
convert = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (convert) {
|
|
|
|
gst_bin_add (GST_BIN_CAST (element), convert);
|
|
|
|
gst_element_set_state (convert, GST_STATE_PLAYING);
|
|
|
|
|
|
|
|
sinkpad = gst_element_get_static_pad (convert, "sink");
|
|
|
|
gst_pad_link (pad, sinkpad);
|
|
|
|
gst_object_unref (sinkpad);
|
|
|
|
|
|
|
|
/* unref old pad, we reffed before */
|
|
|
|
gst_object_unref (pad);
|
|
|
|
|
|
|
|
/* continue with new pad and caps */
|
|
|
|
pad = gst_element_get_static_pad (convert, "src");
|
|
|
|
if ((caps = GST_PAD_CAPS (pad)))
|
|
|
|
gst_caps_ref (caps);
|
|
|
|
else if ((caps = gst_pad_get_caps (pad)) == NULL)
|
|
|
|
goto no_caps;
|
|
|
|
}
|
|
|
|
|
2010-12-11 17:01:53 +00:00
|
|
|
if (!(factory = find_payloader (urifact, caps)))
|
|
|
|
goto no_factory;
|
|
|
|
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
|
|
|
|
/* we have a payloader now */
|
|
|
|
GST_DEBUG ("found payloader factory %s",
|
|
|
|
gst_plugin_feature_get_name (GST_PLUGIN_FEATURE (factory)));
|
|
|
|
|
|
|
|
payloader = gst_element_factory_create (factory, NULL);
|
|
|
|
if (payloader == NULL)
|
|
|
|
goto no_payloader;
|
|
|
|
|
2010-12-12 03:06:41 +00:00
|
|
|
g_object_set (payloader, "pt", data->pt, NULL);
|
|
|
|
data->pt++;
|
|
|
|
|
2011-01-05 11:07:42 +00:00
|
|
|
if (g_object_class_find_property (G_OBJECT_GET_CLASS (payloader),
|
|
|
|
"buffer-list"))
|
|
|
|
g_object_set (payloader, "buffer-list", TRUE, NULL);
|
|
|
|
|
2010-12-11 17:01:53 +00:00
|
|
|
/* add the payloader to the pipeline */
|
|
|
|
gst_bin_add (GST_BIN_CAST (element), payloader);
|
|
|
|
gst_element_set_state (payloader, GST_STATE_PLAYING);
|
|
|
|
|
|
|
|
/* link the pad to the sinkpad of the payloader */
|
|
|
|
sinkpad = gst_element_get_static_pad (payloader, "sink");
|
|
|
|
gst_pad_link (pad, sinkpad);
|
|
|
|
gst_object_unref (sinkpad);
|
2010-12-12 03:06:41 +00:00
|
|
|
gst_object_unref (pad);
|
2010-12-11 17:01:53 +00:00
|
|
|
|
|
|
|
/* now expose the srcpad of the payloader as a ghostpad with the same name
|
|
|
|
* as the uridecodebin pad name. */
|
|
|
|
srcpad = gst_element_get_static_pad (payloader, "src");
|
2010-12-12 03:06:41 +00:00
|
|
|
ghostpad = gst_ghost_pad_new (padname, srcpad);
|
2010-12-11 17:01:53 +00:00
|
|
|
gst_object_unref (srcpad);
|
2010-12-12 03:06:41 +00:00
|
|
|
g_free (padname);
|
2010-12-11 17:01:53 +00:00
|
|
|
|
|
|
|
gst_pad_set_active (ghostpad, TRUE);
|
|
|
|
gst_element_add_pad (element, ghostpad);
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
no_caps:
|
|
|
|
{
|
|
|
|
GST_WARNING ("could not get caps from pad");
|
2010-12-12 03:06:41 +00:00
|
|
|
g_free (padname);
|
|
|
|
gst_object_unref (pad);
|
2010-12-11 17:01:53 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
no_factory:
|
|
|
|
{
|
|
|
|
GST_DEBUG ("no payloader found");
|
2010-12-12 03:06:41 +00:00
|
|
|
g_free (padname);
|
2010-12-11 17:01:53 +00:00
|
|
|
gst_caps_unref (caps);
|
2010-12-12 03:06:41 +00:00
|
|
|
gst_object_unref (pad);
|
2010-12-11 17:01:53 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
no_payloader:
|
|
|
|
{
|
|
|
|
GST_ERROR ("could not create payloader from factory");
|
2010-12-12 03:06:41 +00:00
|
|
|
g_free (padname);
|
2010-12-11 17:01:53 +00:00
|
|
|
gst_caps_unref (caps);
|
2010-12-12 03:06:41 +00:00
|
|
|
gst_object_unref (pad);
|
2010-12-11 17:01:53 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
no_more_pads_cb (GstElement * uribin, GstElement * element)
|
|
|
|
{
|
|
|
|
GST_DEBUG ("no-more-pads");
|
|
|
|
gst_element_no_more_pads (element);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstElement *
|
|
|
|
rtsp_media_factory_uri_get_element (GstRTSPMediaFactory * factory,
|
|
|
|
const GstRTSPUrl * url)
|
|
|
|
{
|
|
|
|
GstElement *topbin, *element, *uribin;
|
|
|
|
GstRTSPMediaFactoryURI *urifact;
|
2010-12-12 03:06:41 +00:00
|
|
|
FactoryData *data;
|
2010-12-11 17:01:53 +00:00
|
|
|
|
|
|
|
urifact = GST_RTSP_MEDIA_FACTORY_URI_CAST (factory);
|
|
|
|
|
|
|
|
GST_LOG ("creating element");
|
|
|
|
|
|
|
|
topbin = gst_bin_new ("GstRTSPMediaFactoryURI");
|
|
|
|
g_assert (topbin != NULL);
|
|
|
|
|
|
|
|
/* our bin will dynamically expose payloaded pads */
|
|
|
|
element = gst_bin_new ("dynpay0");
|
|
|
|
g_assert (element != NULL);
|
|
|
|
|
|
|
|
uribin = gst_element_factory_make ("uridecodebin", "uribin");
|
|
|
|
if (uribin == NULL)
|
|
|
|
goto no_uridecodebin;
|
|
|
|
|
|
|
|
g_object_set (uribin, "uri", urifact->uri, NULL);
|
|
|
|
|
2010-12-12 03:06:41 +00:00
|
|
|
/* keep factory data around */
|
|
|
|
data = g_new0 (FactoryData, 1);
|
|
|
|
data->factory = g_object_ref (factory);
|
|
|
|
data->pt = 96;
|
|
|
|
|
2010-12-11 17:01:53 +00:00
|
|
|
g_object_set_data_full (G_OBJECT (element), factory_key,
|
2010-12-12 03:06:41 +00:00
|
|
|
data, (GDestroyNotify) free_data);
|
2010-12-11 17:01:53 +00:00
|
|
|
|
|
|
|
/* connect to the signals */
|
|
|
|
g_signal_connect (uribin, "autoplug-continue",
|
|
|
|
(GCallback) autoplug_continue_cb, element);
|
|
|
|
g_signal_connect (uribin, "pad-added", (GCallback) pad_added_cb, element);
|
|
|
|
g_signal_connect (uribin, "no-more-pads", (GCallback) no_more_pads_cb,
|
|
|
|
element);
|
|
|
|
|
|
|
|
gst_bin_add (GST_BIN_CAST (element), uribin);
|
|
|
|
gst_bin_add (GST_BIN_CAST (topbin), element);
|
|
|
|
|
|
|
|
return topbin;
|
|
|
|
|
|
|
|
no_uridecodebin:
|
|
|
|
{
|
|
|
|
g_critical ("can't create uridecodebin element");
|
|
|
|
g_object_unref (element);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|