Redo last change by using glib's CLAMP() macro

Original commit message from CVS:
Redo last change by using glib's CLAMP() macro
This commit is contained in:
David Schleef 2002-09-20 21:51:50 +00:00
parent 7c6531143d
commit 251a3f46dd

View file

@ -282,10 +282,9 @@ 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;
klass->control_info[i].def = CLAMP(klass->control_info[i].def,
klass->control_info[i].lowerbound, klass->control_info[i].upperbound)
if (LADSPA_IS_PORT_INPUT(desc->PortDescriptors[current_portnum])) {
argperms = G_PARAM_READWRITE;