summaryrefslogtreecommitdiff
path: root/libs/ardour/globals.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-08-14 13:10:59 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-08-14 13:10:59 -0400
commit6bcdf4f0f106d0b83ed7f221f546c132585e19e7 (patch)
tree1ebbd4c6a63943952cd9b4ec6a7adcc8ad506883 /libs/ardour/globals.cc
parente711dfae12a3922476f5ff39c6b015d6617ed16c (diff)
parent7a431f892ec6e7e2283885c474b680081c983762 (diff)
fix merge issues with master
Diffstat (limited to 'libs/ardour/globals.cc')
-rw-r--r--libs/ardour/globals.cc27
1 files changed, 14 insertions, 13 deletions
diff --git a/libs/ardour/globals.cc b/libs/ardour/globals.cc
index 4e99bc767e..aac7709f90 100644
--- a/libs/ardour/globals.cc
+++ b/libs/ardour/globals.cc
@@ -51,8 +51,6 @@
#undef check /* stupid Apple and their un-namespaced, generic Carbon macros */
#endif
-#include <giomm.h>
-
#include <glibmm/fileutils.h>
#include <glibmm/miscutils.h>
@@ -61,6 +59,7 @@
#include "pbd/cpus.h"
#include "pbd/error.h"
#include "pbd/id.h"
+#include "pbd/pbd.h"
#include "pbd/strsplit.h"
#include "pbd/fpu.h"
#include "pbd/file_utils.h"
@@ -109,6 +108,8 @@ using namespace ARDOUR;
using namespace std;
using namespace PBD;
+bool libardour_initialized = false;
+
compute_peak_t ARDOUR::compute_peak = 0;
find_peaks_t ARDOUR::find_peaks = 0;
apply_gain_to_buffer_t ARDOUR::apply_gain_to_buffer = 0;
@@ -217,21 +218,19 @@ lotsa_files_please ()
}
}
-int
+bool
ARDOUR::init (bool use_windows_vst, bool try_optimization, const char* localedir)
{
- if (!Glib::thread_supported()) {
- Glib::thread_init();
+ if (libardour_initialized) {
+ return true;
}
- // this really should be in PBD::init..if there was one
- Gio::init ();
+ if (!PBD::init()) return false;
#ifdef ENABLE_NLS
(void) bindtextdomain(PACKAGE, localedir);
#endif
- PBD::ID::init ();
SessionEvent::init_event_pool ();
SessionObject::make_property_quarks ();
@@ -271,7 +270,7 @@ ARDOUR::init (bool use_windows_vst, bool try_optimization, const char* localedir
Config = new RCConfiguration;
if (Config->load_state ()) {
- return -1;
+ return false;
}
Config->set_use_windows_vst (use_windows_vst);
@@ -284,13 +283,13 @@ ARDOUR::init (bool use_windows_vst, bool try_optimization, const char* localedir
#ifdef WINDOWS_VST_SUPPORT
if (Config->get_use_windows_vst() && fst_init (0)) {
- return -1;
+ return false;
}
#endif
#ifdef LXVST_SUPPORT
if (Config->get_use_lxvst() && vstfx_init (0)) {
- return -1;
+ return false;
}
#endif
@@ -335,7 +334,9 @@ ARDOUR::init (bool use_windows_vst, bool try_optimization, const char* localedir
ARDOUR::AudioEngine::create ();
- return 0;
+ libardour_initialized = true;
+
+ return true;
}
void
@@ -366,7 +367,7 @@ ARDOUR::cleanup ()
#ifdef LXVST_SUPPORT
vstfx_exit();
#endif
- EnumWriter::destroy ();
+ PBD::cleanup ();
return 0;
}