Clip defaults of control parameters to range.

Original commit message from CVS:
Clip defaults of control parameters to range.
This commit is contained in:
David Schleef 2002-09-20 21:38:13 +00:00
parent ab8fe8ba0b
commit 7fdfef78ef

View file

@ -282,6 +282,10 @@ gst_ladspa_class_init (GstLADSPAClass *klass)
klass->control_info[i].def = 440.0;
}
#endif /* LADSPA_IS_HINT_HAS_DEFAULT */
if(klass->control_info[i].def < klass->control_info[i].lowerbound)
klass->control_info[i].def = klass->control_info[i].lowerbound;
if(klass->control_info[i].def > klass->control_info[i].upperbound)
klass->control_info[i].def = klass->control_info[i].upperbound;
if (LADSPA_IS_PORT_INPUT(desc->PortDescriptors[current_portnum])) {
argperms = G_PARAM_READWRITE;