mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 05:12:09 +00:00
fix min and max float values for dparmas fixes #114512
Original commit message from CVS: fix min and max float values for dparmas fixes #114512
This commit is contained in:
parent
1ce7f9dcb0
commit
9232523643
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ gst_dparam_class_init (GstDParamClass *klass)
|
|||
g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_VALUE_FLOAT,
|
||||
g_param_spec_float("value_float","Float Value",
|
||||
"The value that should be changed if gfloat is the type",
|
||||
(gfloat)G_MININT64, (gfloat)G_MAXINT64, 0.0F, G_PARAM_READWRITE));
|
||||
-G_MAXFLOAT, G_MAXFLOAT, 0.0F, G_PARAM_READWRITE));
|
||||
g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_VALUE_INT,
|
||||
g_param_spec_int("value_int","Integer Value",
|
||||
"The value that should be changed if gint is the type",
|
||||
|
|
Loading…
Reference in a new issue