X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gst%2Fgstcontrolsource.c;h=1817edce96f23ab600dbf910a675afaf68e6b1d8;hb=dc5a62f70234f729c0f3443ab725e9f0232cc1fe;hp=d9b35c72e71b2fc9579165e618316f507abcc567;hpb=a3185f626a23e6f71088f8c7473f17b5b0758166;p=platform%2Fupstream%2Fgstreamer.git diff --git a/gst/gstcontrolsource.c b/gst/gstcontrolsource.c index d9b35c7..1817edc 100644 --- a/gst/gstcontrolsource.c +++ b/gst/gstcontrolsource.c @@ -22,6 +22,7 @@ /** * SECTION:gstcontrolsource + * @title: GstControlSource * @short_description: base class for control source sources * * The #GstControlSource is a base class for control value sources that could @@ -56,15 +57,9 @@ GST_DEBUG_CATEGORY_STATIC (GST_CAT_DEFAULT); G_DEFINE_ABSTRACT_TYPE_WITH_CODE (GstControlSource, gst_control_source, GST_TYPE_OBJECT, _do_init); -static GObject *gst_control_source_constructor (GType type, - guint n_construct_params, GObjectConstructParam * construct_params); - static void gst_control_source_class_init (GstControlSourceClass * klass) { - GObjectClass *gobject_class = G_OBJECT_CLASS (klass); - - gobject_class->constructor = gst_control_source_constructor; } static void @@ -74,20 +69,6 @@ gst_control_source_init (GstControlSource * self) self->get_value_array = NULL; } -static GObject * -gst_control_source_constructor (GType type, guint n_construct_params, - GObjectConstructParam * construct_params) -{ - GObject *self; - - self = - G_OBJECT_CLASS (gst_control_source_parent_class)->constructor (type, - n_construct_params, construct_params); - gst_object_ref_sink (self); - - return self; -} - /** * gst_control_source_get_value: (method) * @self: the #GstControlSource object