mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
gst/gstpadtemplate.c: Add "name-template", "direction", "presence" and "caps" properties, so that gst_pad_template_ne...
Original commit message from CVS: * gst/gstpadtemplate.c: (gst_pad_template_class_init), (gst_static_pad_template_get), (gst_pad_template_new), (gst_pad_template_pad_created), (gst_pad_template_set_property), (gst_pad_template_get_property): Add "name-template", "direction", "presence" and "caps" properties, so that gst_pad_template_new() is just a thin wrapper around g_object_new(), which is better for bindings. (Fixes: #539772)
This commit is contained in:
parent
26b51b2d9c
commit
2fd47ae874
3 changed files with 140 additions and 14 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
||||||
|
2008-08-01 Tim-Philipp Müller <tim.muller at collabora co uk>
|
||||||
|
|
||||||
|
* gst/gstpadtemplate.c:
|
||||||
|
(gst_pad_template_class_init), (gst_static_pad_template_get),
|
||||||
|
(gst_pad_template_new), (gst_pad_template_pad_created),
|
||||||
|
(gst_pad_template_set_property), (gst_pad_template_get_property):
|
||||||
|
Add "name-template", "direction", "presence" and "caps" properties,
|
||||||
|
so that gst_pad_template_new() is just a thin wrapper around
|
||||||
|
g_object_new(), which is better for bindings. (Fixes: #539772)
|
||||||
|
|
||||||
2008-07-31 Michael Smith <msmith@songbirdnest.com>
|
2008-07-31 Michael Smith <msmith@songbirdnest.com>
|
||||||
|
|
||||||
* gst/gsturi.c:
|
* gst/gsturi.c:
|
||||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
||||||
Subproject commit 222a503549004bbabaecc891edffb9e7dbcf2259
|
Subproject commit d70ca17ae6fbe6020996e4567275d5e14972ed45
|
|
@ -108,6 +108,14 @@
|
||||||
|
|
||||||
#define GST_CAT_DEFAULT GST_CAT_PADS
|
#define GST_CAT_DEFAULT GST_CAT_PADS
|
||||||
|
|
||||||
|
enum
|
||||||
|
{
|
||||||
|
PROP_NAME_TEMPLATE = 1,
|
||||||
|
PROP_DIRECTION,
|
||||||
|
PROP_PRESENCE,
|
||||||
|
PROP_CAPS
|
||||||
|
};
|
||||||
|
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
TEMPL_PAD_CREATED,
|
TEMPL_PAD_CREATED,
|
||||||
|
@ -122,6 +130,10 @@ static void gst_pad_template_class_init (GstPadTemplateClass * klass);
|
||||||
static void gst_pad_template_init (GstPadTemplate * templ,
|
static void gst_pad_template_init (GstPadTemplate * templ,
|
||||||
GstPadTemplateClass * klass);
|
GstPadTemplateClass * klass);
|
||||||
static void gst_pad_template_dispose (GObject * object);
|
static void gst_pad_template_dispose (GObject * object);
|
||||||
|
static void gst_pad_template_set_property (GObject * object, guint prop_id,
|
||||||
|
const GValue * value, GParamSpec * pspec);
|
||||||
|
static void gst_pad_template_get_property (GObject * object, guint prop_id,
|
||||||
|
GValue * value, GParamSpec * pspec);
|
||||||
|
|
||||||
GType
|
GType
|
||||||
gst_pad_template_get_type (void)
|
gst_pad_template_get_type (void)
|
||||||
|
@ -169,6 +181,60 @@ gst_pad_template_class_init (GstPadTemplateClass * klass)
|
||||||
|
|
||||||
gobject_class->dispose = gst_pad_template_dispose;
|
gobject_class->dispose = gst_pad_template_dispose;
|
||||||
|
|
||||||
|
gobject_class->get_property = gst_pad_template_get_property;
|
||||||
|
gobject_class->set_property = gst_pad_template_set_property;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GstPadTemplate:name-template
|
||||||
|
*
|
||||||
|
* The name template of the pad template.
|
||||||
|
*
|
||||||
|
* Since: 0.10.21
|
||||||
|
*/
|
||||||
|
g_object_class_install_property (gobject_class, PROP_NAME_TEMPLATE,
|
||||||
|
g_param_spec_string ("name-template", "Name template",
|
||||||
|
"The name template of the pad template", NULL,
|
||||||
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GstPadTemplate:direction
|
||||||
|
*
|
||||||
|
* The direction of the pad described by the pad template.
|
||||||
|
*
|
||||||
|
* Since: 0.10.21
|
||||||
|
*/
|
||||||
|
g_object_class_install_property (gobject_class, PROP_DIRECTION,
|
||||||
|
g_param_spec_enum ("direction", "Direction",
|
||||||
|
"The direction of the pad described by the pad template",
|
||||||
|
GST_TYPE_PAD_DIRECTION, GST_PAD_UNKNOWN,
|
||||||
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GstPadTemplate:presence
|
||||||
|
*
|
||||||
|
* When the pad described by the pad template will become available.
|
||||||
|
*
|
||||||
|
* Since: 0.10.21
|
||||||
|
*/
|
||||||
|
g_object_class_install_property (gobject_class, PROP_PRESENCE,
|
||||||
|
g_param_spec_enum ("presence", "Presence",
|
||||||
|
"When the pad described by the pad template will become available",
|
||||||
|
GST_TYPE_PAD_PRESENCE, GST_PAD_ALWAYS,
|
||||||
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GstPadTemplate:caps
|
||||||
|
*
|
||||||
|
* The capabilities of the pad described by the pad template.
|
||||||
|
*
|
||||||
|
* Since: 0.10.21
|
||||||
|
*/
|
||||||
|
g_object_class_install_property (gobject_class, PROP_CAPS,
|
||||||
|
g_param_spec_boxed ("caps", "Caps",
|
||||||
|
"The capabilities of the pad described by the pad template",
|
||||||
|
GST_TYPE_CAPS,
|
||||||
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
|
||||||
|
|
||||||
gstobject_class->path_string_separator = "*";
|
gstobject_class->path_string_separator = "*";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -269,19 +335,20 @@ GstPadTemplate *
|
||||||
gst_static_pad_template_get (GstStaticPadTemplate * pad_template)
|
gst_static_pad_template_get (GstStaticPadTemplate * pad_template)
|
||||||
{
|
{
|
||||||
GstPadTemplate *new;
|
GstPadTemplate *new;
|
||||||
|
GstCaps *caps;
|
||||||
|
|
||||||
if (!name_is_valid (pad_template->name_template, pad_template->presence))
|
if (!name_is_valid (pad_template->name_template, pad_template->presence))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
|
caps = gst_static_caps_get (&pad_template->static_caps);
|
||||||
|
|
||||||
new = g_object_new (gst_pad_template_get_type (),
|
new = g_object_new (gst_pad_template_get_type (),
|
||||||
"name", pad_template->name_template, NULL);
|
"name", pad_template->name_template,
|
||||||
|
"name-template", pad_template->name_template,
|
||||||
|
"direction", pad_template->direction,
|
||||||
|
"presence", pad_template->presence, "caps", caps, NULL);
|
||||||
|
|
||||||
GST_PAD_TEMPLATE_NAME_TEMPLATE (new) = g_strdup (pad_template->name_template);
|
gst_caps_unref (caps);
|
||||||
GST_PAD_TEMPLATE_DIRECTION (new) = pad_template->direction;
|
|
||||||
GST_PAD_TEMPLATE_PRESENCE (new) = pad_template->presence;
|
|
||||||
|
|
||||||
GST_PAD_TEMPLATE_CAPS (new) =
|
|
||||||
gst_caps_make_writable (gst_static_caps_get (&pad_template->static_caps));
|
|
||||||
|
|
||||||
return new;
|
return new;
|
||||||
}
|
}
|
||||||
|
@ -318,12 +385,8 @@ gst_pad_template_new (const gchar * name_template,
|
||||||
}
|
}
|
||||||
|
|
||||||
new = g_object_new (gst_pad_template_get_type (),
|
new = g_object_new (gst_pad_template_get_type (),
|
||||||
"name", name_template, NULL);
|
"name", name_template, "name-template", name_template,
|
||||||
|
"direction", direction, "presence", presence, "caps", caps, NULL);
|
||||||
GST_PAD_TEMPLATE_NAME_TEMPLATE (new) = g_strdup (name_template);
|
|
||||||
GST_PAD_TEMPLATE_DIRECTION (new) = direction;
|
|
||||||
GST_PAD_TEMPLATE_PRESENCE (new) = presence;
|
|
||||||
GST_PAD_TEMPLATE_CAPS (new) = caps;
|
|
||||||
|
|
||||||
return new;
|
return new;
|
||||||
}
|
}
|
||||||
|
@ -375,3 +438,56 @@ gst_pad_template_pad_created (GstPadTemplate * templ, GstPad * pad)
|
||||||
g_signal_emit (G_OBJECT (templ),
|
g_signal_emit (G_OBJECT (templ),
|
||||||
gst_pad_template_signals[TEMPL_PAD_CREATED], 0, pad);
|
gst_pad_template_signals[TEMPL_PAD_CREATED], 0, pad);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
gst_pad_template_set_property (GObject * object, guint prop_id,
|
||||||
|
const GValue * value, GParamSpec * pspec)
|
||||||
|
{
|
||||||
|
/* these properties are all construct-only */
|
||||||
|
switch (prop_id) {
|
||||||
|
case PROP_NAME_TEMPLATE:
|
||||||
|
GST_PAD_TEMPLATE_NAME_TEMPLATE (object) = g_value_dup_string (value);
|
||||||
|
break;
|
||||||
|
case PROP_DIRECTION:
|
||||||
|
GST_PAD_TEMPLATE_DIRECTION (object) = g_value_get_enum (value);
|
||||||
|
break;
|
||||||
|
case PROP_PRESENCE:
|
||||||
|
GST_PAD_TEMPLATE_PRESENCE (object) = g_value_get_enum (value);
|
||||||
|
break;
|
||||||
|
case PROP_CAPS:
|
||||||
|
/* allow caps == NULL for backwards compatibility (ie. g_object_new()
|
||||||
|
* called without any of the new properties) (FIXME 0.11) */
|
||||||
|
if (g_value_get_boxed (value) != NULL) {
|
||||||
|
GST_PAD_TEMPLATE_CAPS (object) =
|
||||||
|
gst_caps_copy (g_value_get_boxed (value));
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
gst_pad_template_get_property (GObject * object, guint prop_id, GValue * value,
|
||||||
|
GParamSpec * pspec)
|
||||||
|
{
|
||||||
|
/* these properties are all construct-only */
|
||||||
|
switch (prop_id) {
|
||||||
|
case PROP_NAME_TEMPLATE:
|
||||||
|
g_value_set_string (value, GST_PAD_TEMPLATE_NAME_TEMPLATE (object));
|
||||||
|
break;
|
||||||
|
case PROP_DIRECTION:
|
||||||
|
g_value_set_enum (value, GST_PAD_TEMPLATE_DIRECTION (object));
|
||||||
|
break;
|
||||||
|
case PROP_PRESENCE:
|
||||||
|
g_value_set_enum (value, GST_PAD_TEMPLATE_PRESENCE (object));
|
||||||
|
break;
|
||||||
|
case PROP_CAPS:
|
||||||
|
g_value_set_boxed (value, GST_PAD_TEMPLATE_CAPS (object));
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue