gst/videosignal/gstvideodetect.c: Fix property descriptions.

Original commit message from CVS:
* gst/videosignal/gstvideodetect.c: (gst_video_detect_class_init):
Fix property descriptions.
This commit is contained in:
Wim Taymans 2007-07-03 17:09:24 +00:00
parent 2aa5ce3111
commit b31a38a8c3
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2007-07-03 Wim Taymans <wim.taymans@gmail.com>
* gst/videosignal/gstvideodetect.c: (gst_video_detect_class_init):
Fix property descriptions.
2007-07-03 Stefan Kost <ensonic@users.sf.net> 2007-07-03 Stefan Kost <ensonic@users.sf.net>
* docs/plugins/Makefile.am: * docs/plugins/Makefile.am:

View file

@ -476,13 +476,13 @@ gst_video_detect_class_init (gpointer klass, gpointer class_data)
DEFAULT_PATTERN_DATA_COUNT, G_PARAM_READWRITE | G_PARAM_CONSTRUCT)); DEFAULT_PATTERN_DATA_COUNT, G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
g_object_class_install_property (gobject_class, PROP_PATTERN_CENTER, g_object_class_install_property (gobject_class, PROP_PATTERN_CENTER,
g_param_spec_double ("pattern-center", "Pattern center", g_param_spec_double ("pattern-center", "Pattern center",
"The center of the black/white region (0.0 = highest, 0.5 lowest)", "The center of the black/white separation (0.0 = lowest, 1.0 highest)",
0.0, 1.0, DEFAULT_PATTERN_CENTER, 0.0, 1.0, DEFAULT_PATTERN_CENTER,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT)); G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
g_object_class_install_property (gobject_class, PROP_PATTERN_SENSITIVITY, g_object_class_install_property (gobject_class, PROP_PATTERN_SENSITIVITY,
g_param_spec_double ("pattern-sensitivity", "Pattern sensitivity", g_param_spec_double ("pattern-sensitivity", "Pattern sensitivity",
"The sensitivity for detecting the markers (0.0 = lowest, 1.0 highest)", "The sensitivity around the center for detecting the markers "
0.0, 1.0, DEFAULT_PATTERN_SENSITIVITY, "(0.0 = lowest, 1.0 highest)", 0.0, 1.0, DEFAULT_PATTERN_SENSITIVITY,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT)); G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
g_object_class_install_property (gobject_class, PROP_LEFT_OFFSET, g_object_class_install_property (gobject_class, PROP_LEFT_OFFSET,
g_param_spec_int ("left-offset", "Left Offset", g_param_spec_int ("left-offset", "Left Offset",