mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
no fleshed out plugin manager for livetrax
This commit is contained in:
parent
37d0e7bbe4
commit
bde7643692
1 changed files with 9 additions and 0 deletions
|
|
@ -83,6 +83,7 @@
|
||||||
#include "ardour/lv2_plugin.h"
|
#include "ardour/lv2_plugin.h"
|
||||||
#include "ardour/plugin.h"
|
#include "ardour/plugin.h"
|
||||||
#include "ardour/plugin_manager.h"
|
#include "ardour/plugin_manager.h"
|
||||||
|
#include "ardour/profile.h"
|
||||||
#include "ardour/rc_configuration.h"
|
#include "ardour/rc_configuration.h"
|
||||||
#include "ardour/search_paths.h"
|
#include "ardour/search_paths.h"
|
||||||
|
|
||||||
|
|
@ -194,6 +195,10 @@ PluginManager::PluginManager ()
|
||||||
, _cancel_scan_timeout_all (false)
|
, _cancel_scan_timeout_all (false)
|
||||||
, _enable_scan_timeout (false)
|
, _enable_scan_timeout (false)
|
||||||
{
|
{
|
||||||
|
if (Profile->get_livetrax()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
char* s;
|
char* s;
|
||||||
|
|
||||||
#if defined WINDOWS_VST_SUPPORT || defined LXVST_SUPPORT || defined MACVST_SUPPORT || defined VST3_SUPPORT
|
#if defined WINDOWS_VST_SUPPORT || defined LXVST_SUPPORT || defined MACVST_SUPPORT || defined VST3_SUPPORT
|
||||||
|
|
@ -458,6 +463,10 @@ PluginManager::conceal_duplicates (ARDOUR::PluginInfoList* old, ARDOUR::PluginIn
|
||||||
void
|
void
|
||||||
PluginManager::refresh (bool cache_only)
|
PluginManager::refresh (bool cache_only)
|
||||||
{
|
{
|
||||||
|
if (Profile->get_livetrax()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
Glib::Threads::Mutex::Lock lm (_lock, Glib::Threads::TRY_LOCK);
|
Glib::Threads::Mutex::Lock lm (_lock, Glib::Threads::TRY_LOCK);
|
||||||
|
|
||||||
if (!lm.locked()) {
|
if (!lm.locked()) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue