diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2016-01-01 18:42:08 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2016-01-01 18:42:08 +0000 |
| commit | 503774d20c79b0c359cf52a302560b8788d13d99 (patch) | |
| tree | 74cd696cb18f8003b345628d5b89d6cf0afd0527 /src/plugins | |
| parent | 9fdba70dc14f1858ace88480aa963df911c25a96 (diff) | |
| download | qmmp-503774d20c79b0c359cf52a302560b8788d13d99.tar.gz qmmp-503774d20c79b0c359cf52a302560b8788d13d99.tar.bz2 qmmp-503774d20c79b0c359cf52a302560b8788d13d99.zip | |
ladspa: fixed multiband eq (1197) support (#416)
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@5949 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins')
| -rw-r--r-- | src/plugins/Effect/ladspa/ladspahost.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/Effect/ladspa/ladspahost.cpp b/src/plugins/Effect/ladspa/ladspahost.cpp index ff4078f4b..0875384bc 100644 --- a/src/plugins/Effect/ladspa/ladspahost.cpp +++ b/src/plugins/Effect/ladspa/ladspahost.cpp @@ -167,7 +167,7 @@ LADSPAEffect *LADSPAHost::load(const QString &filename, long int num) LADSPAEffect *instance = new LADSPAEffect; instance->fileName = filename; - instance->library = dlopen(qPrintable(filename), RTLD_NOW); + instance->library = dlopen(qPrintable(filename), RTLD_NOW | RTLD_DEEPBIND); instance->handle = 0; instance->handle2 = 0; if (!instance->library) @@ -368,7 +368,7 @@ void LADSPAHost::findPlugins(const QString &path_entry) foreach(QFileInfo file, files) { - library = dlopen(qPrintable(file.absoluteFilePath ()), RTLD_LAZY); + library = dlopen(qPrintable(file.absoluteFilePath ()), RTLD_NOW | RTLD_DEEPBIND); if (library == 0) { continue; |
