audiomixer: critical error for blocksize, timeout min/max values

Audiomixer blocksize, cant be 0, hence adjusting the minimum value to 1
timeout value of aggregator is defined with MAX of MAXINT64,
but it cannot cross G_MAXLONG * GST_SECOND - 1
Hence changed the max value of the same

https://bugzilla.gnome.org/show_bug.cgi?id=738845
This commit is contained in:
Vineeth T M 2014-10-20 18:25:08 +05:30 committed by Sebastian Dröge
parent c5224553c4
commit d38e242a72

View File

@ -791,7 +791,7 @@ gst_audiomixer_class_init (GstAudioMixerClass * klass)
g_object_class_install_property (gobject_class, PROP_BLOCKSIZE, g_object_class_install_property (gobject_class, PROP_BLOCKSIZE,
g_param_spec_uint ("blocksize", "Block Size", g_param_spec_uint ("blocksize", "Block Size",
"Output block size in number of samples", 0, "Output block size in number of samples", 1,
G_MAXUINT, DEFAULT_BLOCKSIZE, G_MAXUINT, DEFAULT_BLOCKSIZE,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));