Explicitly define float constants as float

With MSVC, this gives the following warning:

warning C4305: 'function': truncation from 'double' to 'gfloat'

Apparently, MSVC does not figure out what type to use for constants
based on the assignment. This warning is very spammy, so let's try to
fix it.
This commit is contained in:
Nirbheek Chauhan 2016-10-27 09:11:26 +05:30
parent 37df358c5e
commit 4e4b568f65

View file

@ -102,7 +102,7 @@ gst_stereo_class_init (GstStereoClass * klass)
g_object_class_install_property (gobject_class, PROP_STEREO,
g_param_spec_float ("stereo", "stereo", "stereo",
0.0, 1.0, 0.1,
0.0, 1.0, 0.1f,
G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS));
trans_class->transform_ip = GST_DEBUG_FUNCPTR (gst_stereo_transform_ip);
@ -112,7 +112,7 @@ static void
gst_stereo_init (GstStereo * stereo)
{
stereo->active = TRUE;
stereo->stereo = 0.1;
stereo->stereo = 0.1f;
}
static GstFlowReturn