summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/audioengine.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-09-05 13:22:34 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-09-05 13:22:34 -0400
commit1c49138e0099db37931b34fad552b43c332e187d (patch)
treeb3ebb558e8b055695fff674114272f7a28792bda /libs/ardour/ardour/audioengine.h
parentfee626c386ccc23c41b7b2976c5031cd335b7587 (diff)
move MidiPortManager from AudioEngine to Session
This makes the responsibilities and ownership of non-Route related MIDI ports more clear, and removes a few wierd bits of code. It also ensures that open/close/open on the same session will retain connections for those MIDI ports
Diffstat (limited to 'libs/ardour/ardour/audioengine.h')
-rw-r--r--libs/ardour/ardour/audioengine.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/libs/ardour/ardour/audioengine.h b/libs/ardour/ardour/audioengine.h
index 61fe27abd5..4db1604345 100644
--- a/libs/ardour/ardour/audioengine.h
+++ b/libs/ardour/ardour/audioengine.h
@@ -36,8 +36,6 @@
#include "pbd/signals.h"
#include "pbd/stacktrace.h"
-#include "midi++/mmc.h"
-
#include "ardour/ardour.h"
#include "ardour/data_type.h"
#include "ardour/session_handle.h"
@@ -184,8 +182,6 @@ public:
/* sets up the process callback thread */
static void thread_init_callback (void *);
- MIDI::MachineControl& mmc() { return _mmc; }
-
private:
AudioEngine ();
@@ -207,10 +203,8 @@ public:
framecnt_t last_monitor_check;
/// the number of frames processed since start() was called
framecnt_t _processed_frames;
- bool _pre_freewheel_mmc_enabled;
Glib::Threads::Thread* m_meter_thread;
ProcessThread* _main_thread;
- MIDI::MachineControl _mmc;
void meter_thread ();
void start_metering_thread ();