2009-01-20 18:44:45 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "rtsp-media-factory.h"
|
|
|
|
|
2009-01-22 14:33:29 +00:00
|
|
|
#define DEFAULT_LAUNCH NULL
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
PROP_LAUNCH,
|
|
|
|
PROP_LAST
|
|
|
|
};
|
2009-01-20 18:44:45 +00:00
|
|
|
|
2009-01-22 14:33:29 +00:00
|
|
|
static void gst_rtsp_media_factory_get_property (GObject *object, guint propid,
|
|
|
|
GValue *value, GParamSpec *pspec);
|
|
|
|
static void gst_rtsp_media_factory_set_property (GObject *object, guint propid,
|
|
|
|
const GValue *value, GParamSpec *pspec);
|
2009-01-20 18:44:45 +00:00
|
|
|
static void gst_rtsp_media_factory_finalize (GObject * obj);
|
|
|
|
|
2009-01-22 16:58:19 +00:00
|
|
|
static GstRTSPMedia * default_construct (GstRTSPMediaFactory *factory, const GstRTSPUrl *url);
|
|
|
|
static GstElement * default_get_element (GstRTSPMediaFactory *factory, const GstRTSPUrl *url);
|
2009-01-22 14:33:29 +00:00
|
|
|
|
|
|
|
G_DEFINE_TYPE (GstRTSPMediaFactory, gst_rtsp_media_factory, G_TYPE_OBJECT);
|
2009-01-20 18:44:45 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
gst_rtsp_media_factory_class_init (GstRTSPMediaFactoryClass * klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
|
|
|
|
gobject_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
2009-01-22 14:33:29 +00:00
|
|
|
gobject_class->get_property = gst_rtsp_media_factory_get_property;
|
|
|
|
gobject_class->set_property = gst_rtsp_media_factory_set_property;
|
2009-01-20 18:44:45 +00:00
|
|
|
gobject_class->finalize = gst_rtsp_media_factory_finalize;
|
|
|
|
|
2009-01-22 14:33:29 +00:00
|
|
|
/**
|
|
|
|
* GstRTSPMediaFactory::launch
|
|
|
|
*
|
|
|
|
* The gst_parse_launch() line to use for constructing the pipeline in the
|
|
|
|
* default prepare vmethod.
|
|
|
|
*
|
|
|
|
* The pipeline description should return a GstBin as the toplevel element
|
|
|
|
* which can be accomplished by enclosing the dscription with brackets '('
|
|
|
|
* ')'.
|
|
|
|
*
|
|
|
|
* The description should return a pipeline with payloaders named pay0, pay1,
|
|
|
|
* etc.. Each of the payloaders will result in a stream.
|
|
|
|
*/
|
|
|
|
g_object_class_install_property (gobject_class, PROP_LAUNCH,
|
|
|
|
g_param_spec_string ("launch", "Launch", "A launch description of the pipeline",
|
|
|
|
DEFAULT_LAUNCH, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
|
|
|
|
|
|
|
klass->construct = default_construct;
|
2009-01-22 15:51:08 +00:00
|
|
|
klass->get_element = default_get_element;
|
2009-01-20 18:44:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_rtsp_media_factory_init (GstRTSPMediaFactory * factory)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_rtsp_media_factory_finalize (GObject * obj)
|
|
|
|
{
|
2009-01-22 14:33:29 +00:00
|
|
|
GstRTSPMediaFactory *factory = GST_RTSP_MEDIA_FACTORY (obj);
|
|
|
|
|
|
|
|
g_free (factory->launch);
|
|
|
|
|
2009-01-20 18:44:45 +00:00
|
|
|
G_OBJECT_CLASS (gst_rtsp_media_factory_parent_class)->finalize (obj);
|
|
|
|
}
|
|
|
|
|
2009-01-22 14:33:29 +00:00
|
|
|
static void
|
|
|
|
gst_rtsp_media_factory_get_property (GObject *object, guint propid,
|
|
|
|
GValue *value, GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GstRTSPMediaFactory *factory = GST_RTSP_MEDIA_FACTORY (object);
|
|
|
|
|
|
|
|
switch (propid) {
|
|
|
|
case PROP_LAUNCH:
|
|
|
|
g_value_take_string (value, gst_rtsp_media_factory_get_launch (factory));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, propid, pspec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_rtsp_media_factory_set_property (GObject *object, guint propid,
|
|
|
|
const GValue *value, GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GstRTSPMediaFactory *factory = GST_RTSP_MEDIA_FACTORY (object);
|
|
|
|
|
|
|
|
switch (propid) {
|
|
|
|
case PROP_LAUNCH:
|
|
|
|
gst_rtsp_media_factory_set_launch (factory, g_value_get_string (value));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, propid, pspec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_rtsp_media_factory_new:
|
|
|
|
*
|
|
|
|
* Create a new #GstRTSPMediaFactory instance.
|
|
|
|
*
|
2009-01-22 16:58:19 +00:00
|
|
|
* Returns: a new #GstRTSPMediaFactory object.
|
2009-01-22 14:33:29 +00:00
|
|
|
*/
|
2009-01-20 18:44:45 +00:00
|
|
|
GstRTSPMediaFactory *
|
|
|
|
gst_rtsp_media_factory_new (void)
|
|
|
|
{
|
|
|
|
GstRTSPMediaFactory *result;
|
|
|
|
|
|
|
|
result = g_object_new (GST_TYPE_RTSP_MEDIA_FACTORY, NULL);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2009-01-22 14:33:29 +00:00
|
|
|
/**
|
|
|
|
* gst_rtsp_media_factory_set_launch:
|
|
|
|
* @factory: a #GstRTSPMediaFactory
|
|
|
|
* @launch: the launch description
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* The gst_parse_launch() line to use for constructing the pipeline in the
|
|
|
|
* default prepare vmethod.
|
|
|
|
*
|
|
|
|
* The pipeline description should return a GstBin as the toplevel element
|
|
|
|
* which can be accomplished by enclosing the dscription with brackets '('
|
|
|
|
* ')'.
|
|
|
|
*
|
|
|
|
* The description should return a pipeline with payloaders named pay0, pay1,
|
|
|
|
* etc.. Each of the payloaders will result in a stream.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_rtsp_media_factory_set_launch (GstRTSPMediaFactory *factory, const gchar *launch)
|
2009-01-20 18:44:45 +00:00
|
|
|
{
|
2009-01-22 14:33:29 +00:00
|
|
|
g_return_if_fail (GST_IS_RTSP_MEDIA_FACTORY (factory));
|
|
|
|
g_return_if_fail (launch != NULL);
|
2009-01-20 18:44:45 +00:00
|
|
|
|
2009-01-22 14:33:29 +00:00
|
|
|
factory->launch = g_strdup (launch);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_rtsp_media_factory_get_launch:
|
|
|
|
* @factory: a #GstRTSPMediaFactory
|
|
|
|
*
|
|
|
|
* Get the gst_parse_launch() pipeline description that will be used in the
|
|
|
|
* default prepare vmethod.
|
|
|
|
*
|
|
|
|
* Returns: the configured launch description. g_free() after usage.
|
|
|
|
*/
|
|
|
|
gchar *
|
|
|
|
gst_rtsp_media_factory_get_launch (GstRTSPMediaFactory *factory)
|
|
|
|
{
|
|
|
|
gchar *result;
|
|
|
|
|
|
|
|
result = g_strdup (factory->launch);
|
2009-01-20 18:44:45 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2009-01-22 14:33:29 +00:00
|
|
|
/**
|
|
|
|
* gst_rtsp_media_factory_construct:
|
|
|
|
* @factory: a #GstRTSPMediaFactory
|
2009-01-22 16:58:19 +00:00
|
|
|
* @url: the url used
|
2009-01-22 14:33:29 +00:00
|
|
|
*
|
2009-01-22 16:58:19 +00:00
|
|
|
* Prepare the media object and create its streams. Implementations
|
2009-01-22 14:33:29 +00:00
|
|
|
* should create the needed gstreamer elements and add them to the result
|
|
|
|
* object. No state changes should be performed on them yet.
|
|
|
|
*
|
|
|
|
* One or more GstRTSPMediaStream objects should be added to the result with
|
|
|
|
* the srcpad member set to a source pad that produces buffer of type
|
|
|
|
* application/x-rtp.
|
|
|
|
*
|
2009-01-22 16:58:19 +00:00
|
|
|
* Returns: a new #GstRTSPMedia if the media could be prepared.
|
2009-01-22 14:33:29 +00:00
|
|
|
*/
|
2009-01-22 16:58:19 +00:00
|
|
|
GstRTSPMedia *
|
|
|
|
gst_rtsp_media_factory_construct (GstRTSPMediaFactory *factory, const GstRTSPUrl *url)
|
2009-01-20 18:44:45 +00:00
|
|
|
{
|
2009-01-22 16:58:19 +00:00
|
|
|
GstRTSPMedia *res;
|
2009-01-20 18:44:45 +00:00
|
|
|
GstRTSPMediaFactoryClass *klass;
|
|
|
|
|
|
|
|
klass = GST_RTSP_MEDIA_FACTORY_GET_CLASS (factory);
|
|
|
|
|
2009-01-22 14:33:29 +00:00
|
|
|
if (klass->construct)
|
2009-01-22 16:58:19 +00:00
|
|
|
res = klass->construct (factory, url);
|
2009-01-22 14:33:29 +00:00
|
|
|
else
|
|
|
|
res = NULL;
|
2009-01-20 18:44:45 +00:00
|
|
|
|
2009-01-22 16:58:19 +00:00
|
|
|
g_message ("constructed media %p for url %s", res, url->abspath);
|
2009-01-22 14:33:29 +00:00
|
|
|
|
|
|
|
return res;
|
2009-01-20 18:44:45 +00:00
|
|
|
}
|
|
|
|
|
2009-01-22 14:33:29 +00:00
|
|
|
static void
|
|
|
|
caps_notify (GstPad * pad, GParamSpec * unused, GstRTSPMediaStream * stream)
|
2009-01-20 18:44:45 +00:00
|
|
|
{
|
2009-01-22 14:33:29 +00:00
|
|
|
if (stream->caps)
|
|
|
|
gst_caps_unref (stream->caps);
|
|
|
|
if ((stream->caps = GST_PAD_CAPS (pad)))
|
|
|
|
gst_caps_ref (stream->caps);
|
2009-01-20 18:44:45 +00:00
|
|
|
}
|
2009-01-22 14:33:29 +00:00
|
|
|
|
2009-01-22 15:51:08 +00:00
|
|
|
static GstElement *
|
2009-01-22 16:58:19 +00:00
|
|
|
default_get_element (GstRTSPMediaFactory *factory, const GstRTSPUrl *url)
|
2009-01-20 18:44:45 +00:00
|
|
|
{
|
2009-01-22 15:51:08 +00:00
|
|
|
GstElement *element;
|
2009-01-22 14:33:29 +00:00
|
|
|
GError *error = NULL;
|
2009-01-20 18:44:45 +00:00
|
|
|
|
2009-01-22 14:33:29 +00:00
|
|
|
/* we need a parse syntax */
|
|
|
|
if (factory->launch == NULL)
|
|
|
|
goto no_launch;
|
|
|
|
|
|
|
|
/* parse the user provided launch line */
|
|
|
|
element = gst_parse_launch (factory->launch, &error);
|
|
|
|
if (element == NULL)
|
|
|
|
goto parse_error;
|
|
|
|
|
|
|
|
if (error != NULL) {
|
|
|
|
/* a recoverable error was encountered */
|
|
|
|
g_warning ("recoverable parsing error: %s", error->message);
|
|
|
|
g_error_free (error);
|
|
|
|
}
|
2009-01-22 15:51:08 +00:00
|
|
|
return element;
|
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
no_launch:
|
|
|
|
{
|
|
|
|
g_critical ("no launch line specified");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
parse_error:
|
|
|
|
{
|
|
|
|
g_critical ("could not parse launch syntax (%s): %s", factory->launch,
|
|
|
|
(error ? error->message : "unknown reason"));
|
|
|
|
if (error)
|
|
|
|
g_error_free (error);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-22 16:58:19 +00:00
|
|
|
static GstRTSPMedia *
|
|
|
|
default_construct (GstRTSPMediaFactory *factory, const GstRTSPUrl *url)
|
2009-01-22 15:51:08 +00:00
|
|
|
{
|
2009-01-22 16:58:19 +00:00
|
|
|
GstRTSPMedia *media;
|
2009-01-22 15:51:08 +00:00
|
|
|
GstRTSPMediaStream *stream;
|
|
|
|
GstElement *pay, *element;
|
|
|
|
GstPad * pad;
|
|
|
|
gint i;
|
|
|
|
GstRTSPMediaFactoryClass *klass;
|
|
|
|
|
|
|
|
klass = GST_RTSP_MEDIA_FACTORY_GET_CLASS (factory);
|
|
|
|
|
|
|
|
if (klass->get_element)
|
2009-01-22 16:58:19 +00:00
|
|
|
element = klass->get_element (factory, url);
|
2009-01-22 15:51:08 +00:00
|
|
|
else
|
|
|
|
element = NULL;
|
|
|
|
if (element == NULL)
|
|
|
|
goto no_element;
|
2009-01-22 14:33:29 +00:00
|
|
|
|
2009-01-22 16:58:19 +00:00
|
|
|
media = g_object_new (GST_TYPE_RTSP_MEDIA, NULL);
|
|
|
|
media->element = element;
|
2009-01-22 14:33:29 +00:00
|
|
|
|
|
|
|
/* try to find all the payloader elements, they should be named 'pay%d'. for
|
|
|
|
* each of the payloaders we will create a stream, collect the source pad and
|
|
|
|
* add a notify::caps on the pad. */
|
|
|
|
for (i = 0; ; i++) {
|
|
|
|
gchar *name;
|
|
|
|
|
|
|
|
name = g_strdup_printf ("pay%d", i);
|
|
|
|
|
|
|
|
if (!(pay = gst_bin_get_by_name (GST_BIN (element), name))) {
|
|
|
|
/* no more payloaders found, we have found all the streams and we can
|
|
|
|
* end the loop */
|
|
|
|
g_free (name);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* create the stream */
|
|
|
|
stream = g_new0 (GstRTSPMediaStream, 1);
|
2009-01-22 16:58:19 +00:00
|
|
|
stream->media = media;
|
2009-01-22 14:33:29 +00:00
|
|
|
stream->element = element;
|
|
|
|
stream->payloader = pay;
|
2009-01-22 16:58:19 +00:00
|
|
|
stream->idx = media->streams->len;
|
2009-01-22 14:33:29 +00:00
|
|
|
|
|
|
|
pad = gst_element_get_static_pad (pay, "src");
|
|
|
|
|
|
|
|
/* ghost the pad of the payloader to the element */
|
|
|
|
stream->srcpad = gst_ghost_pad_new (name, pad);
|
|
|
|
gst_element_add_pad (stream->element, stream->srcpad);
|
|
|
|
|
|
|
|
stream->caps_sig = g_signal_connect (pad, "notify::caps", (GCallback) caps_notify, stream);
|
|
|
|
gst_object_unref (pad);
|
|
|
|
|
|
|
|
/* add stream now */
|
2009-01-22 16:58:19 +00:00
|
|
|
g_array_append_val (media->streams, stream);
|
2009-01-22 14:33:29 +00:00
|
|
|
gst_object_unref (pay);
|
|
|
|
|
|
|
|
g_free (name);
|
|
|
|
}
|
|
|
|
|
2009-01-22 16:58:19 +00:00
|
|
|
return media;
|
2009-01-22 14:33:29 +00:00
|
|
|
|
|
|
|
/* ERRORS */
|
2009-01-22 15:51:08 +00:00
|
|
|
no_element:
|
2009-01-22 14:33:29 +00:00
|
|
|
{
|
2009-01-22 15:51:08 +00:00
|
|
|
g_critical ("could not create element");
|
2009-01-22 14:33:29 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|