summaryrefslogtreecommitdiffstats
path: root/gst
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2009-06-12 15:13:29 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2009-06-19 11:03:13 +0200
commit41869062c65081ec0b971b87eb9a84682d7275eb (patch)
tree35c82d5894db4e9520a4c17c31cfbc8ec7cb2ace /gst
parent6ed5ac184b258cbe4ae999c950006c287d45ca95 (diff)
downloadgst-plugins-bad-41869062c65081ec0b971b87eb9a84682d7275eb.tar.gz
gst-plugins-bad-41869062c65081ec0b971b87eb9a84682d7275eb.tar.bz2
gst-plugins-bad-41869062c65081ec0b971b87eb9a84682d7275eb.zip
frei0r: Allow the complete double range for double properties
The spec restricts it to [0,1] but some plugins are using the complete double range.
Diffstat (limited to 'gst')
-rw-r--r--gst/frei0r/gstfrei0r.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/frei0r/gstfrei0r.c b/gst/frei0r/gstfrei0r.c
index 0841c184..a09f0a2d 100644
--- a/gst/frei0r/gstfrei0r.c
+++ b/gst/frei0r/gstfrei0r.c
@@ -91,7 +91,7 @@ gst_frei0r_klass_install_properties (GObjectClass * gobject_class,
case F0R_PARAM_DOUBLE:
g_object_class_install_property (gobject_class, count++,
g_param_spec_double (prop_name, param_info->name,
- param_info->explanation, 0.0, 1.0, 0.0,
+ param_info->explanation, -G_MAXDOUBLE, G_MAXDOUBLE, 0.0,
G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE));
properties[i].n_prop_ids = 1;
break;