Fix off-by-one in body_range().
[ardour.git] / libs / ardour / globals.cc
index e9383295e7ff4aaa900c0646c5a034a0dcd4a532..35aef9dc868e7481b6f6f71306790147631cf799 100644 (file)
 #include "midi++/mmc.h"
 
 #include "ardour/analyser.h"
-#include "ardour/ardour.h"
 #include "ardour/audio_library.h"
 #include "ardour/audioengine.h"
+#include "ardour/audioplaylist.h"
 #include "ardour/audioregion.h"
-#include "ardour/audiosource.h"
 #include "ardour/buffer_manager.h"
 #include "ardour/control_protocol_manager.h"
-#include "ardour/dB.h"
-#include "ardour/debug.h"
 #include "ardour/filesystem_paths.h"
 #include "ardour/midi_region.h"
 #include "ardour/mix.h"
-#include "ardour/audioplaylist.h"
 #include "ardour/panner_manager.h"
 #include "ardour/plugin_manager.h"
 #include "ardour/process_thread.h"
 #include "ardour/profile.h"
-#include "ardour/region.h"
 #include "ardour/rc_configuration.h"
+#include "ardour/region.h"
 #include "ardour/route_group.h"
 #include "ardour/runtime_functions.h"
-#include "ardour/session.h"
 #include "ardour/session_event.h"
 #include "ardour/source_factory.h"
-#include "ardour/utils.h"
 
 #include "audiographer/routines.h"
 
@@ -112,7 +106,9 @@ mix_buffers_no_gain_t   ARDOUR::mix_buffers_no_gain = 0;
 
 PBD::Signal1<void,std::string> ARDOUR::BootMessage;
 
-void ARDOUR::setup_enum_writer ();
+namespace ARDOUR {
+extern void setup_enum_writer ();
+}
 
 /* this is useful for quite a few things that want to check
    if any bounds-related property has changed
@@ -175,7 +171,7 @@ setup_hardware_optimization (bool try_optimization)
                }
 
 #elif defined (__APPLE__) && defined (BUILD_VECLIB_OPTIMIZATIONS)
-               long sysVersion = 0;
+               SInt32 sysVersion = 0;
 
                if (noErr != Gestalt(gestaltSystemVersion, &sysVersion))
                        sysVersion = 0;
@@ -277,7 +273,7 @@ ARDOUR::init (bool use_windows_vst, bool try_optimization)
 
        Stateful::current_state_version = CURRENT_SESSION_FILE_VERSION;
 
-       setup_enum_writer ();
+       ARDOUR::setup_enum_writer ();
 
        // allow ardour the absolute maximum number of open files
        lotsa_files_please ();
@@ -317,17 +313,6 @@ ARDOUR::init (bool use_windows_vst, bool try_optimization)
        AUPluginInfo::load_cached_info ();
 #endif
 
-       /* Make VAMP look in our library ahead of anything else */
-
-       char *p = getenv ("VAMP_PATH");
-       string vamppath = VAMP_DIR;
-       if (p) {
-               vamppath += ':';
-               vamppath += p;
-       }
-       setenv ("VAMP_PATH", vamppath.c_str(), 1);
-
-
        setup_hardware_optimization (try_optimization);
 
        SourceFactory::init ();
@@ -390,9 +375,10 @@ ARDOUR::cleanup ()
        fst_exit ();
 #endif
 
-#ifdef LXVST_SUPPOR
+#ifdef LXVST_SUPPORT
        vstfx_exit();
 #endif
+       EnumWriter::destroy ();
        return 0;
 }
 
@@ -400,7 +386,7 @@ void
 ARDOUR::find_bindings_files (map<string,string>& files)
 {
        vector<sys::path> found;
-       SearchPath spath = ardour_search_path() + user_config_directory() + system_config_search_path();
+       SearchPath spath = ardour_config_search_path();
 
        if (getenv ("ARDOUR_SAE")) {
                Glib::PatternSpec pattern("*SAE-*.bindings");
@@ -461,7 +447,7 @@ ARDOUR::setup_fpu ()
 
        switch (Config->get_denormal_model()) {
        case DenormalNone:
-               MXCSR &= ~(_MM_FLUSH_ZERO_ON|0x8000);
+               MXCSR &= ~(_MM_FLUSH_ZERO_ON | 0x40);
                break;
 
        case DenormalFTZ:
@@ -473,14 +459,14 @@ ARDOUR::setup_fpu ()
        case DenormalDAZ:
                MXCSR &= ~_MM_FLUSH_ZERO_ON;
                if (fpu.has_denormals_are_zero()) {
-                       MXCSR |= 0x8000;
+                       MXCSR |= 0x40;
                }
                break;
 
        case DenormalFTZDAZ:
                if (fpu.has_flush_to_zero()) {
                        if (fpu.has_denormals_are_zero()) {
-                               MXCSR |= _MM_FLUSH_ZERO_ON | 0x8000;
+                               MXCSR |= _MM_FLUSH_ZERO_ON | 0x40;
                        } else {
                                MXCSR |= _MM_FLUSH_ZERO_ON;
                        }
@@ -493,82 +479,6 @@ ARDOUR::setup_fpu ()
 #endif
 }
 
-ARDOUR::OverlapType
-ARDOUR::coverage (framepos_t sa, framepos_t ea,
-                 framepos_t sb, framepos_t eb)
-{
-       /* OverlapType returned reflects how the second (B)
-          range overlaps the first (A).
-
-          The diagrams show various relative placements
-          of A and B for each OverlapType.
-
-          Notes:
-             Internal: the start points cannot coincide
-             External: the start and end points can coincide
-             Start: end points can coincide
-             End: start points can coincide
-
-          XXX Logically, Internal should disallow end
-          point equality.
-       */
-
-       /*
-            |--------------------|   A
-                 |------|            B
-               |-----------------|   B
-
-
-             "B is internal to A"
-
-       */
-
-       if ((sb > sa) && (eb <= ea)) {
-               return OverlapInternal;
-       }
-
-       /*
-            |--------------------|   A
-          ----|                      B
-           -----------------------|   B
-          --|                        B
-
-            "B overlaps the start of A"
-
-       */
-
-       if ((eb >= sa) && (eb <= ea)) {
-               return OverlapStart;
-       }
-       /*
-            |---------------------|  A
-                   |----------------- B
-            |----------------------- B
-                                   |- B
-
-            "B overlaps the end of A"
-
-       */
-       if ((sb > sa) && (sb <= ea)) {
-               return OverlapEnd;
-       }
-       /*
-            |--------------------|     A
-          --------------------------  B
-            |-----------------------  B
-           ----------------------|    B
-             |--------------------|    B
-
-
-           "B overlaps all of A"
-       */
-       if ((sa >= sb) && (sa <= eb) && (ea <= eb)) {
-               return OverlapExternal;
-       }
-
-       return OverlapNone;
-}
-
 string
 ARDOUR::translation_kill_path ()
 {