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 8635b377f9
commit 7c6531143d

View file

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