mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-02 21:48:55 +00:00
Clip defaults of control parameters to range.
Original commit message from CVS: Clip defaults of control parameters to range.
This commit is contained in:
parent
8635b377f9
commit
7c6531143d
1 changed files with 4 additions and 0 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue