summaryrefslogtreecommitdiff
path: root/gst/videosignal
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2007-07-03 17:09:24 +0000
committerWim Taymans <wim.taymans@gmail.com>2007-07-03 17:09:24 +0000
commitb31a38a8c302c23753e4f51a14ffc271527c4aef (patch)
tree5ffe3f49f50c050dc9c7f322a72e45cb352ec554 /gst/videosignal
parent2aa5ce3111f28f30498c223eb2e8996bfe6e61c3 (diff)
downloadgstreamer-plugins-bad-b31a38a8c302c23753e4f51a14ffc271527c4aef.tar.gz
gst/videosignal/gstvideodetect.c: Fix property descriptions.
Original commit message from CVS: * gst/videosignal/gstvideodetect.c: (gst_video_detect_class_init): Fix property descriptions.
Diffstat (limited to 'gst/videosignal')
-rw-r--r--gst/videosignal/gstvideodetect.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/videosignal/gstvideodetect.c b/gst/videosignal/gstvideodetect.c
index 88f626f70..ec30fc76c 100644
--- a/gst/videosignal/gstvideodetect.c
+++ b/gst/videosignal/gstvideodetect.c
@@ -476,13 +476,13 @@ gst_video_detect_class_init (gpointer klass, gpointer class_data)
DEFAULT_PATTERN_DATA_COUNT, G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
g_object_class_install_property (gobject_class, PROP_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,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
g_object_class_install_property (gobject_class, PROP_PATTERN_SENSITIVITY,
g_param_spec_double ("pattern-sensitivity", "Pattern sensitivity",
- "The sensitivity for detecting the markers (0.0 = lowest, 1.0 highest)",
- 0.0, 1.0, DEFAULT_PATTERN_SENSITIVITY,
+ "The sensitivity around the center for detecting the markers "
+ "(0.0 = lowest, 1.0 highest)", 0.0, 1.0, DEFAULT_PATTERN_SENSITIVITY,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
g_object_class_install_property (gobject_class, PROP_LEFT_OFFSET,
g_param_spec_int ("left-offset", "Left Offset",