mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
ladspa: only use g_return_val_if_fail for checking pre-conditions
g_return_* can be disabled. Still we want to check for failed instance creation.
This commit is contained in:
parent
d7a4293774
commit
a9ffdb5b47
1 changed files with 7 additions and 3 deletions
|
@ -578,9 +578,8 @@ gst_ladspa_setup (GstSignalProcessor * gsp, GstCaps * caps)
|
|||
|
||||
GST_DEBUG_OBJECT (ladspa, "instantiating the plugin at %d Hz", sample_rate);
|
||||
|
||||
ladspa->handle = desc->instantiate (desc, sample_rate);
|
||||
|
||||
g_return_val_if_fail (ladspa->handle != NULL, FALSE);
|
||||
if (!(ladspa->handle = desc->instantiate (desc, sample_rate)))
|
||||
goto no_instance;
|
||||
|
||||
/* connect the control ports */
|
||||
for (i = 0; i < gsp_class->num_control_in; i++)
|
||||
|
@ -597,6 +596,11 @@ no_sample_rate:
|
|||
GST_WARNING_OBJECT (gsp, "got no sample-rate");
|
||||
return FALSE;
|
||||
}
|
||||
no_instance:
|
||||
{
|
||||
GST_WARNING_OBJECT (gsp, "could not create instance");
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
|
||||
static gboolean
|
||||
|
|
Loading…
Reference in a new issue