Browse Source

Misc

tags/1.9.4
falkTX 11 years ago
parent
commit
fa9ca8631c
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      source/discovery/carla-discovery.cpp

+ 7
- 1
source/discovery/carla-discovery.cpp View File

@@ -666,6 +666,12 @@ void do_dssi_check(void*& libHandle, const char* const filename, const bool init


const LADSPA_Descriptor* const ldescriptor(descriptor->LADSPA_Plugin); const LADSPA_Descriptor* const ldescriptor(descriptor->LADSPA_Plugin);


if (ldescriptor == nullptr)
{
DISCOVERY_OUT("error", "DSSI plugin doesn't provide the LADSPA interface");
return;
}

if (init && ldescriptor->instantiate != nullptr && ldescriptor->cleanup != nullptr) if (init && ldescriptor->instantiate != nullptr && ldescriptor->cleanup != nullptr)
{ {
LADSPA_Handle handle = ldescriptor->instantiate(ldescriptor, kSampleRate); LADSPA_Handle handle = ldescriptor->instantiate(ldescriptor, kSampleRate);
@@ -809,7 +815,7 @@ void do_dssi_check(void*& libHandle, const char* const filename, const bool init


if (descriptor->get_program != nullptr && descriptor->select_program != nullptr) if (descriptor->get_program != nullptr && descriptor->select_program != nullptr)
{ {
while (descriptor->get_program(handle, programs++))
while (descriptor->get_program(handle, programs++) != nullptr)
continue; continue;
} }




Loading…
Cancel
Save