diff options
Diffstat (limited to 'gst')
-rw-r--r-- | gst/smooth/gstsmooth.c | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/gst/smooth/gstsmooth.c b/gst/smooth/gstsmooth.c index a4bd43af1..67d5143cb 100644 --- a/gst/smooth/gstsmooth.c +++ b/gst/smooth/gstsmooth.c @@ -123,9 +123,16 @@ gst_smooth_class_init (GstSmoothClass * klass) parent_class = g_type_class_peek_parent (klass); - g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_ACTIVE, g_param_spec_boolean ("active", "active", "active", TRUE, G_PARAM_READWRITE)); /* CHECKME */ - g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_TOLERANCE, g_param_spec_int ("tolerance", "tolerance", "tolerance", G_MININT, G_MAXINT, 0, G_PARAM_READWRITE)); /* CHECKME */ - g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_FILTERSIZE, g_param_spec_int ("filtersize", "filtersize", "filtersize", G_MININT, G_MAXINT, 0, G_PARAM_READWRITE)); /* CHECKME */ + /* FIXME: add long property descriptions */ + g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_ACTIVE, + g_param_spec_boolean ("active", "active", "active", TRUE, + G_PARAM_READWRITE)); + g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_TOLERANCE, + g_param_spec_int ("tolerance", "tolerance", "tolerance", G_MININT, + G_MAXINT, 0, G_PARAM_READWRITE)); + g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_FILTERSIZE, + g_param_spec_int ("filtersize", "filtersize", "filtersize", G_MININT, + G_MAXINT, 0, G_PARAM_READWRITE)); gobject_class->set_property = gst_smooth_set_property; gobject_class->get_property = gst_smooth_get_property; |