summaryrefslogtreecommitdiff
path: root/gst/smooth
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sf.net>2010-10-19 15:30:02 +0300
committerStefan Kost <ensonic@users.sf.net>2010-10-19 15:36:18 +0300
commit92634ff92a8425e5d24f276a12d681509d27249c (patch)
tree6c6437c1c9f634bca2d8e9122e2645825e387160 /gst/smooth
parent8ab60bd7cdbada53e0c4feb29cae2be8cd53af28 (diff)
downloadgstreamer-plugins-bad-92634ff92a8425e5d24f276a12d681509d27249c.tar.gz
various: wrap property registration and add a single fixme for long desc.
Diffstat (limited to 'gst/smooth')
-rw-r--r--gst/smooth/gstsmooth.c13
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;